的交互我與primefaces工作3.4.2 Javax.faces 2.1.9會議迷路即使我
我的web.xml
<session-config>
<session-timeout>45</session-timeout>
</session-config>
<p:idleMonitor id="idMonitorSession" timeout="2400000"
onidle="dlgMensajeSessionExp.show()" />
<p:dialog header="Sesion Ended" resizable="false"
widgetVar="dlgMensajeSessionExp" width="300" height="120"
modal="true" closable="false" appendToBody="true">
<center>
<h:outputText value="Session Ended" />
<h:form id="sessionForm">
<h:commandLink actionListener="#{user.exit()}">
<h:graphicImage style="border:0px" value="/resources/images/login.png"
width="80px" />
</h:commandLink>
</h:form>
</center>
</p:dialog>
但是會議得到,如果我甚至喪失我在網頁的工作,你有什麼想法,爲什麼會出現這種情況,
Web服務器是的Websphere 7.0.0.17
你如何在頁面上進行交互? idleMonitor是純粹的客戶端事物。如果沒有發送到服務器,則會話通常到期。所以你顯示的代碼和你看到的行爲是預期的 – Kukeltje
@Kukeltje我應該添加
然後調用一個方法刷新? – DuSant你認爲你應該在哪裏添加它,爲什麼?請創建一個[mcve] – Kukeltje