我尝试在我的jsf项目中添加richfaces。 我的IDE是Eclipse Helios,Tomcat 6.我的项目设置为动态Web项目,配置了JSF 1.2(Mojarra JSF API实现), 将jsf-facelets.jar,jstl-api-1.2.jar,jstl-impl-1.2.jar添加到web-inf / lib。
我有一个页面masterPage1.jsp,它在将richfaces库添加到web-inf / lib之前运行正常。 之后我添加了richfaces-api-3.3.3.final.jar,richfaces-impl-3.3.3.final.jar,richfaces-ui-3.3.3.final.jar,commons-beanutils-1.8.3.jar,commons -collections-3.2.1.jar,commons-digester-2.1.jar,commons-logging-1.1.1.jar。
“Palette”不显示Richfaces或Ajax4Jsf库。 我也在web.xml中使用代码
<context-param>
<param-name>org.richfaces.SKIN</param-name>
<param-value>blueSky</param-value>
</context-param>
<filter>
<display-name>RichFaces Filter</display-name>
<filter-name>richfaces</filter-name>
<filter-class>org.ajax4jsf.Filter</filter-class>
</filter>
<filter-mapping>
<filter-name>richfaces</filter-name>
<servlet-name>Faces Servlet</servlet-name>
<dispatcher>REQUEST</dispatcher>
<dispatcher>FORWARD</dispatcher>
<dispatcher>INCLUDE</dispatcher>
</filter-mapping>
谢谢大家。