URL掩码使用prettyfaces jar无法正常工作

时间:2015-10-15 12:58:28

标签: java xml java-ee prettyfaces

的web.xml

    Calendar calendar = Calendar.getInstance();
    int month = calendar.get(Calendar.MONTH);
    calendar.set(Calendar.MONTH, month - 1);
    int lastMonth = calendar.get(Calendar.MONTH);

WEB-INF /漂亮-cofig.xml

<filter>
   <filter-name>Pretty Filter</filter-name>
   <filter-class>com.ocpsoft.pretty.PrettyFilter</filter-class>
</filter>

<filter-mapping> 
   <filter-name>Pretty Filter</filter-name> 
   <url-pattern>*.xhtml</url-pattern> 
   <dispatcher>FORWARD</dispatcher> 
   <dispatcher>REQUEST</dispatcher> 
   <dispatcher>ERROR</dispatcher>
</filter-mapping>

我在我的应用程序中添加了以上代码用于url标记,另外我还添加了prettyfaces jar。 添加了这个之后,我已经启动了我的tomcat服务器并且还启动了prettyfaces。 在点击这个特殊网址“/faces/test/mynewtest.xhtml”时,网址没有掩盖到“/ test / new”。 请提供正常工作的建议。

0 个答案:

没有答案