Is there a way to call a method upon leaving a page with JSF or PrimeFaces?

前端 未结 4 1970
感情败类
感情败类 2021-02-20 16:48

Is there a way to call a method upon leaving a page with JSF?

4条回答
  •  栀梦
    栀梦 (楼主)
    2021-02-20 17:00

    Not when using native JSF or PrimeFaces. Your best bet would be to hook on session expiration instead.

    import javax.inject.Named;
    import javax.enterprise.context.SessionScoped;
    
    @Named
    @SessionScoped
    public class Bean implements Serializable {
    
        @PreDestroy
        public void destroy() {
            // Your code here.
        }
    }
    

    If you happen to use the JSF utility library OmniFaces, then you can use its @ViewScoped. This will call the @PreDestroy when leaving the page referencing the view scoped bean.

    import javax.inject.Named;
    import org.omnifaces.cdi.ViewScoped;
    
    @Named
    @ViewScoped
    public class Bean implements Serializable {
    
        @PreDestroy
        public void destroy() {
            // Your code here.
        }
    }
    

    Under the covers, it works by triggering a navigator.sendBeacon() during the window beforeunload event with a fallback to synchronous XHR (which is deprecated in modern browsers supporting navigator.sendBeacon()).

    See also:

    • How detect and remove (during a session) unused @ViewScoped beans that can't be garbage collected

提交回复
热议问题