きれいな顔をjsf2.0のprimefacesアプリケーションと統合する必要がありますが、問題が発生します。
はじめにで述べたように、web.xmlに次のように配置し、必要なjarをlibフォルダーに追加しました
<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を使用しています。