Intellij Idea自动填充不正确的Web xml文件

时间:2015-01-05 17:15:29

标签: java web intellij-idea xsd web.xml

我在web.xml

中使用了以下标题
<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">

我不知道自己做错了什么但是Idea无法为web.xml建议正确的语法。我得到了以下内容。

enter image description here

我的pom.xml中有以下内容,所以我确定JAR文件是正确的。

<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>javax.servlet-api</artifactId>
    <version>3.1.0</version>
</dependency>

我知道自动完成应该按照XSD文件工作。那么XSD使用不正确吗?

1 个答案:

答案 0 :(得分:0)

我认为它是你的架构错误。使用以下架构,它对我来说工作正常

<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">![enter image description here][1]

screen shot