2

尝试发布到我的服务器时出现以下错误。我已经下载了 apache myfaces 2.0。我还在 eclipse 中添加了这些作为库,并为 JSF 2.0 添加了项目方面。

原因:org.apache.xmlbeans.XmlException:无效部署描述符:错误:jar:file:/C:/DOCUME~1/shawt/LOCALS~1/Temp/geronimo-deployer7810915779003395233.tmpdir/Scout.war!/WEB- INF/faces-config.xml:2:1: error: cvc-enumeration-valid: string value '2.0' is not a valid enumeration value for faces-config-versionType in namespace 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>
4

0 回答 0