Another work around:
@PostConstruct public void postCon() { if (!FacesContext.getCurrentInstance().isPostback()) if (conversation.isTransient()) conversation.begin(); }
<h:head> <f:metadata> <f:event listener="#{convTest.postCon}" type="preRenderView" /> </f:metadata> </h:head>
Another work around: