如果在Eclipse中,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 message and select "Show Details..."
可能的原因是JDK版本问题,可以查看你的JDK版本是否正确。而在我具体项目中的解决办法是:
将
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
</web-app>
改成:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4"
xmlns="http://JAVA.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/xmlSchema-instance"
xsi:schemaLocation="http://JAVA.sun.com/xml/ns/j2ee
http://JAVA.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
</web-app>
解决Eclipse中web.xml配置错误的方法
本文解决了一个在Eclipse中配置web.xml时出现的XML解析错误问题,通过修改XML声明方式解决了JDK版本不兼容导致的问题。
1万+

被折叠的 条评论
为什么被折叠?



