Eclipse web.xml中编译错误:.../web-app_2.4.xsd

如果在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,webapp2.4.xsd.)