刷新一下

时间:2012-12-16 04:58:44

标签: session authentication jsf-2 primefaces j-security-check

我的“j_security_check连接已中断(http代码408)”,建议的解决方案为<meta http-equiv="refresh" content="#{session.maxInactiveInterval}"/> https://stackoverflow.com/a/2141274/1852036,但我的网页结构是组合使用 template.xhtml view.xhtml ,如<ui:composition
我的template.xhtml:

<html ...
<f:view ...
<h:body ...
 <ui:insert name="content">
...

我的view.xhtml在 session.maxInactiveInterval

时刷新
<ui:composition ...
<ui:define name="content">
...

任何人都可以帮我这样做吗?我想刷新此<ui:composition视图,我无法在 template.xhtml 上使用<meta http-equiv="refresh" content="#{session.maxInactiveInterval}"/>,因为它被多个视图使用

1 个答案:

答案 0 :(得分:0)

我使用p:poll来解决类似的问题。像

这样的东西
<p:poll interval="#{session.maxInactiveInterval - 1}" process="@all"/>