java.lang.IllegalArgument,Parse error in application web.xml file at jndi:/localhost/WEB-INF/web.xml

启动Tomcat时错误:
java.lang.IllegalArgumentException: Can't convert argument: null
Parse error in application web.xml file at jndi:/localhost/WEB-INF/web.xml

Resolution:
上述问题,是由于在Eclipse下重构JEE项目名时,Eclipse自动更新了部署文件web.xml,重新生成了xml文件的头部声明,新增加了javaee的命名空间。 

Xml代码  
   
      debug    
      true    
   
  




将前面的javaee:去掉即可。

你可能感兴趣的:(Java)