1

我正在尝试在 NetBeans 8.2 IDE 中使用新的 Java EE 8 编写一个小型 Web 应用程序。我设置了一个 web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="4.0" 
    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-app_4_0.xsd"> 
  <context-param>
    <param-name>javax.faces.PROJECT_STAGE</param-name>
    <param-value>Development</param-value>
  </context-param>
  <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>
  <session-config>
    <session-timeout>
      30
    </session-timeout>
  </session-config>
  <welcome-file-list>
    <welcome-file>faces/index.xhtml</welcome-file>
    <welcome-file>index.xhtml</welcome-file>
  </welcome-file-list>
</web-app>

如果我尝试验证 XML 文件,我会收到以下错误

XML 验证开始。检查文件:/Users/xxx/Development/projects/TestTrial/src/main/webapp/WEB-INF/web.xml... 引用的实体位于“ http://xmlns.jcp.org/xml/ns/javaee/网络应用程序_4_0.xsd ”。Vorzeitiges Dateiende。[1] http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd XML 验证完成。

这告诉我,文件有一个初步的结尾。如果我将它从 4.0 更改为 3.1,一切正常。以下软件使用了 NetBeans 8.2 / JDK 1.8u152 / glassfish v5

我对 Java EE 很陌生,我们将不胜感激。

4

0 回答 0