web.xml 文件报错:Referenced file contains errors、cvc-id.3:A field of identity constraint

引言:导入maven工程,web.xml 报了三个错误!错误截图如下:

   1.Referenced file contains errors (file:/D:/MyEclipse+/MyEclipse/configuration/org.eclipse.osgi/980/0/.cp/dtdsAndSchemas/
 web-app_3_0.xsd). For more information, right click on the message in the Problems View and select "Show Details..."
   2. cvc-id.3: A field of identity constraint 'web-common-filter-name-uniqueness' matched element 'web-app', 

 web.xml 文件报错:Referenced file contains errors、cvc-id.3:A field of identity constraint_第1张图片

web.xml 文件报错:Referenced file contains errors、cvc-id.3:A field of identity constraint_第2张图片web.xml 文件报错:Referenced file contains errors、cvc-id.3:A field of identity constraint_第3张图片

在网上找了关于第二个问题的解决方法,只能找到英文版的,而且还看不太懂,最终去查了第一个问题的解决问题,大致的解决方法是因为xml 导入标签错误

xmlns="http://java.sun.com/xml/ns/javaee"

xsi:schemaLocation="http://java.sun.com/xml/ns/javaee

http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">

将上面  xmlns="http://java.sun.com/xml/ns/javaee"  中的java改为大写

具体如下:xmlns="http://JAVA.sun.com/xml/ns/javaee"

最终报错web.xml文件 错误信息全都没有了!  截图如下:

web.xml 文件报错:Referenced file contains errors、cvc-id.3:A field of identity constraint_第4张图片

 

 

你可能感兴趣的:(错题集,学习笔记,Web工程)