我在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
建议正确的语法。我得到了以下内容。
我的pom.xml
中有以下内容,所以我确定JAR文件是正确的。
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
</dependency>
我知道自动完成应该按照XSD文件工作。那么XSD使用不正确吗?
答案 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]