我正在尝试制作一个简单的 PrimeFaces 示例,例如他们网站上的教程。我基本上和这个用户有完全相同的问题,但我没有像他那样的空 jar 文件。h: 标签渲染得很好,但是 p: 标签在 HTML 中显示为 p: 标签。PrimeFaces 3.1.1 和 3.2 也有同样的问题。这是我的 web.xml 文件。
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
<display-name>jsf</display-name>
<welcome-file-list>
<welcome-file>Login.xhtml</welcome-file>
</welcome-file-list>
<context-param>
<param-name>javax.servlet.jsp.jstl.fmt.localizationContext</param-name>
<param-value>resources.application</param-value>
</context-param>
<context-param>
<description>State saving method: 'client' or 'server' (=default). See JSF Specification 2.5.2</description>
<param-name>javax.faces.STATE_SAVING_METHOD</param-name>
<param-value>client</param-value>
</context-param>
<context-param>
<description></description>
<param-name>org.apache.myfaces.ALLOW_JAVASCRIPT</param-name>
<param-value>true</param-value>
</context-param>
<context-param>
<description></description>
<param-name>org.apache.myfaces.PRETTY_HTML</param-name>
<param-value>true</param-value>
</context-param>
<context-param>
<param-name>org.apache.myfaces.DETECT_JAVASCRIPT</param-name>
<param-value>false</param-value>
</context-param>
<context-param>
<description></description>
<param-name>org.apache.myfaces.AUTO_SCROLL</param-name>
<param-value>true</param-value>
</context-param>
<listener>
<listener-class>org.apache.myfaces.webapp.StartupServletContextListener</listener- class>
</listener>
<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>*.xhtml</url-pattern>
</servlet-mapping>
</web-app>
我的 XHTML 文件如下所示。
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:p="http://primefaces.org/ui">
<h:head>
<title><ui:insert name="title">Facelets Tutorial</ui:insert></title>
</h:head>
<body>
<p:editor />
<p:spinner />
</body>
</html>
我启动我的服务器(Tomcat 6),渲染的 HTML 看起来像这样,h: 标签渲染得很好,p: 标签仍然是 p: 标签。
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:p="http://primefaces.org/ui"><head>
<title>Facelets Tutorial</title></head>
<body>
<p:editor></p:editor>
<p:spinner></p:spinner>
</body>
</html>
我将 PrimeFaces jar 添加到我的构建路径中,并且我知道它已被识别,因为我可以在源文件中很好地导入/使用 PrimeFaces 类。我什至下载了 PF 源并将其添加到我的项目中以确保可以看到它,但我仍然遇到这个问题。我的 web.xml 中是否需要一些额外的配置?