5

我在 Tomcat7 和 JSF 2.1 中使用OmniFaces 来处理. 我设置了与 OmniFaces 展示相同的错误页面。在此处查找错误页面在此处查找模板FullAjaxExceptionHandlerViewExpiredException

它工作正常。当会话过期时,我最终会进入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
4

1 回答 1

11

您可以通过将以下内容添加到以下内容来摆脱jsessionidURL 中的路径片段web.xml

<session-config>
    <tracking-mode>COOKIE</tracking-mode>
</session-config>

它基本上禁用了 URL-rewriting

于 2013-06-27T17:35:36.770 回答