原因:

在Eclipse中修改了已有的Web工程的工程名,然后出现该错误。

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

 

检查web.xml文件:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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_2_5.xsd" >

确实是出现了两次:xmlns="http://java.sun.com/xml/ns/javaee"

 

解决方法:

删掉一个即可。

相关文章:

  • 2022-12-23
  • 2021-05-02
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-11
  • 2022-01-23
  • 2021-06-22
猜你喜欢
  • 2021-05-06
  • 2021-07-13
  • 2021-03-31
  • 2022-12-23
  • 2021-06-16
  • 2022-12-23
  • 2021-10-30
相关资源
相似解决方案