当前位置: 首页 > 工具软件 > Informa > 使用案例 >

"Referenced file contains errors (http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd). For more informa

公羊瀚
2023-12-01

在web.xml中出现:"Referenced file contains errors (http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd). For more information ,right click on the messege and sel...


解决方法:


1、将j2ee改为javaee 


2、 行数变为5行


<web-app version="3.0"
         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
          http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">


3、 其中http://java.sun.com/xml/ns/javaee和 http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"的顺序不能颠倒,不然也容易出错(试出来的效果)


 类似资料: