Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有任何方法可以通过更改代码来使 JSF 会话过期或结束或超时。
例如,如果用户点击了退出按钮,是否需要清除所有会话相关数据,而不需要关闭浏览器或等待超时?
您可以使用:
FacesContext.getCurrentInstance().getExternalContext().invalidateSession();
然后立即重定向到新资源(发出新请求)。