Eclipse中Web项目修改名称后出现ttribute "xmlns" was 错误already specified for element "web-app"

今天把之前的一个Web项目采用rename方式修改了一下名称,结果重新发布是出现以下错误信息:

Attribute "xmlns" was already specified for element "web-app"

进入项目的WEB-INF目录打开Web.xml检测web-app节点发现出现了重复的属性设置


xmlns="http://java.sun.com/xml/ns/javaee" 

xmlns:web="http://java.sun.com/xml/ns/javaee"  

xmlns="http://java.sun.com/xml/ns/javaee" 

xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0">


将重复的属性删除一个之后,重新发布项目问题解决。


你可能感兴趣的:(Web前端技术)