我使用JSF 2.2,Jboss AS 7在Eclipse Luna中创建了一个动态Web项目。问题是在运行项目后,在代码<a4j:commandButton value="a4j button"></a4j:commandButton>
中没有按钮呈现在浏览器中。例如a4j:commandLink
也是如此。
我尝试将<url-pattern>/faces/*</url-pattern>
修改为<url-pattern>*.xhtml</url-pattern>
(在互联网上找到类似的内容),但没有结果。
点击Ctrl Space
<a4j:
会弹出一个标签列表,这样我就可以正确安装richfaces。
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:rich="http://richfaces.org/rich"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:a4j="http://richfaces.org/a4j"
xmlns:h="http://java.sun.com/jsf/html">
<h:body>
<h:form>
<rich:panel>
<a4j:commandButton value="a4j button"></a4j:commandButton>
</rich:panel>
</h:form>
</h:body>
</html>
web.xml文件:
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">`
<display-name>TestProject</display-name>
<welcome-file-list>
<welcome-file>faces/index.xhtml</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
</web-app>
faces-config.xml文件:
<faces-config
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_2.xsd"
version="2.2">
</faces-config>