我从svn存储库检查了这个项目到IDEA,web.xml xsd看起来像这样:
<web-app id="data-fabric-web-tool" version="2.5"
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_5.xsd">
我看到的第一个错误是必须声明“Element web-app”。 此外,我为文件中的每个标记都收到“无法解析符号”错误。
答案 0 :(得分:8)
根据:
所有Java EE 7和更新的部署描述符模式共享 名称空间http://xmlns.jcp.org/xml/ns/javaee
尝试此描述符命名空间定义:
<web-app 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_3_1.xsd"
version="3.1" id="data-fabric-web-tool">
</web-app>