Richfaces を JSF2 プロジェクトに統合しようとすると、次の警告が表示されます。
Warning: The page /template/template.xhtml declares namespace http://richfaces.org/a4j and uses the tag a4j:region , but no TagLibrary associated to namespace.
私はmavenを使用していないので、すべて手動で作成しました。私はそれを統合するために次のことを行いました: 以下の jar を EAR Deployment Assembly に入れます:
richfaces-components-api-4.3.0.Final.jar
richfaces-components-ui-4.3.0.Final.jar
richfaces-core-api-4.3.0.Final.jar
richfaces-core-impl-4.3.0.Final.jar
sac-1.3.jar
guava-11.0.2.jar
cssparser-0.9.5.jar
WAR のマニフェストに追加しました。
ページスニペットは次のとおりです。
<ui:composition
xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:t="http://myfaces.apache.org/tomahawk"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:a4j="http://richfaces.org/a4j"
id="TemplateView">
...
<h:form id="templateForm">
<a4j:region>
<a4j:jsFunction name="refreshSession">
<a4j:actionparam name="refresh" assignTo="#{ilapAdapter.refreshSession}"/>
</a4j:jsFunction>
</a4j:region>
</h:form>
...
何か不足していますか?この警告が表示されるのはなぜですか? 「Getting Started」ガイドによると、faces-config.xml または web.xml で追加の構成を行う必要はありません。
Richfaces の Ajax 機能だけが必要です。
PS。WEB-INF.lib に richfaces-core-api-4.3.0.Final.jar、richfaces-core-impl-4.3.0.Final.jar を配置しても機能しません。
Richfaces 関連の SystemOut:
[08.02.13 14:18:26:398 CET] 00000022 DefaultFacesC I Reading config : wsjar:file:/C:/projects/folab/workspace/FOLAB-WAS8/installedApps/CE02110Node02Cell/Dialog_Common_EAR.ear/richfaces-core-impl-4.3.0.Final.jar!/META-INF/faces-config.xml
[08.02.13 14:18:26:949 CET] 00000022 Config W org.richfaces.application.DefaultModule configure There was no service org.richfaces.focus.FocusManager found
[08.02.13 14:18:26:956 CET] 00000022 Cache I org.richfaces.cache.CacheManager getCacheFactory Selected fallback cache factory
[08.02.13 14:18:26:959 CET] 00000022 Cache I org.richfaces.cache.lru.LRUMapCacheFactory createCache Creating LRUMap cache instance using parameters: {com.ibm.ws.jsf.JSP_UPDATE_CHECK=true, javax.faces.STATE_SAVING_METHOD=server, javax.faces.PROJECT_STAGE=Development, com.ibm.ws.jsf.LOAD_FACES_CONFIG_AT_STARTUP=true, javax.faces.CONFIG_FILES=/WEB-INF/faces-navigation.xml, javax.faces.DEFAULT_SUFFIX=.xhtml}
[08.02.13 14:18:26:969 CET] 00000022 Cache I org.richfaces.cache.lru.LRUMapCacheFactory createCache Creating LRUMap cache instance of 512 items capacity
[08.02.13 14:18:26:985 CET] 00000022 Application I org.richfaces.application.InitializationListener onStart by , version
[08.02.13 14:18:26:989 CET] 00000022 Application W org.richfaces.application.InitializationListener logWarningWhenConnectionFactoryPresent JMS API was found on the classpath; if you want to enable RichFaces Push JMS integration, set context-param 'org.richfaces.push.jms.enabled' in web.xml