我在 Tomcat7 和 JSF 2.1 中使用OmniFaces 来处理. 我设置了与 OmniFaces 展示相同的错误页面。在此处查找错误页面,在此处查找模板。FullAjaxExceptionHandler
ViewExpiredException
它工作正常。当会话过期时,我最终会进入expired.xhtml
错误页面。但是,当我单击错误页面中的以下链接时,
<p><a href="#{requestScope['javax.servlet.error.request_uri']}">Back to initial page.</a></p>
然后我得到以下异常:
com.sun.faces.mgbean.ManagedBeanCreationException: An error occurred performing resource injection on managed bean
这不是一个大问题。无论如何,我需要一个将用户指向主页的按钮。所以我用下面的按钮替换了它:
<h:button value="Home" outcome="logout" />
连同这个导航案例:
<navigation-rule>
<from-view-id>*</from-view-id>
<navigation-case>
<from-outcome>logout</from-outcome>
<to-view-id>/stdPortal/index.xhtml</to-view-id>
<redirect/>
</navigation-case>
</navigation-rule>
导航将我带到了正确的页面,但是会话 ID 出现在 URL 中:
https://localhost/stdPortal/index.xhtml;jsessionid=B68784B4ED8882A6575A2EE4012AF1B5
我不想要这个。我该如何摆脱它?我希望 URL 类似于:
https://localhost/stdPortal/index.xhtml