【发布时间】:2012-12-03 15:20:02
【问题描述】:
我有一个 “j_security_check 连接中断(http 代码 408)”,建议的解决方案是 <meta http-equiv="refresh" content="#{session.maxInactiveInterval}"/> by https://stackoverflow.com/a/2141274/1852036 但我的页面结构是一个 composition 使用template.xhtml 和一个 view.xhtml 像 <ui:composition:
my 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}"/>,因为它被多个视图使用了
【问题讨论】:
标签: session authentication jsf-2 primefaces j-security-check