我需要将漂亮的面孔与我的 jsf 2.0,primefaces 应用程序集成,但这会带来一些麻烦。
如入门中所述,我将以下内容放在我的 web.xml 中,在 lib 文件夹中添加了所需的 jar
<filter>
<filter-name>Pretty Filter</filter-name>
<filter-class>com.ocpsoft.pretty.PrettyFilter</filter-class>
<async-supported>true</async-supported>
</filter>
<filter-mapping>
<filter-name>Pretty Filter</filter-name>
<url-pattern>/*</url-pattern>
<dispatcher>FORWARD</dispatcher>
<dispatcher>REQUEST</dispatcher>
<dispatcher>ERROR</dispatcher>
</filter-mapping>
我的 web.xml 中的其他项目
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<context-param>
<param-name>com.sun.faces.expressionFactory</param-name>
<param-value>org.jboss.el.ExpressionFactoryImpl</param-value>
</context-param>
<context-param>
<param-name>org.primefaces.extensions.DELIVER_UNCOMPRESSED_RESOURCES</param-name>
<param-value>false</param-value>
</context-param>
但我收到以下错误:
Invalid content was found starting with element 'async-supported'. One of '{"http://java.sun.com/xml/ns/javaee":init-param}' is expected
如果我 <async-supported>
从项目构建中删除,项目编译但映射不起作用。
pretty-config.xml
与入门相同。
我是否需要在我的 web.xml 中提及映射文件的名称/路径,即 pretty-config.xml?
编辑:
我正在使用 Glassfish 服务器 3。