开发遇到的问题汇总

问题一:maven项目重命名之后带来的问题

报错信息:Attribute "xmlns" was already specified for element "web-app"

 

 
后来经查明发现是web.xml中的第2行关于web-app的解释,
由于项目的Rename,
出现了xmlns的重复赋值。
 
< 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” version=“2.5″>
 
只要去掉一个之后,就可以正常启动了!

 

你可能感兴趣的:(开发)