尝试发布到我的服务器时出现以下错误。我已经下载了apache myfaces 2.0。我还在eclipse中添加了这些库,并添加了JSF 2.0的项目方面。
引起:org.apache.xmlbeans.XmlException:无效的部署 描述符:错误: 罐子:文件:/ C:/DOCUME~1/shawt/LOCALS~1/Temp/geronimo-deployer7810915779003395233.tmpdir/Scout.war /WEB-INF/faces-config.xml:2:1: 错误:cvc-enumeration-valid:字符串值'2.0'无效 namespace中的faces-config-versionType的枚举值 http://java.sun.com/xml/ns/javaee
这是我的faces-config
:
<?xml version="1.0"?>
<faces-config
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee/web-facesconfig_2_0.xsd"
version="2.0">
<navigation-rule>
<from-view-id>menu.jsp</from-view-id>
<navigation-case>
<from-action>#{pageController.processPage1}</from-action>
<from-outcome>success</from-outcome>
<to-view-id>test.jsp</to-view-id>
</navigation-case>
</navigation-rule>
</faces-config>
这是我的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>Scout</display-name>
<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>*.jsp</url-pattern>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
</web-app>