标签:jee cat 代码 xml文件 自动 exce val can ati
启动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代码
<init-param>
<javaee:param-name>debug</javaee:param-name>
<javaee:param-value>true</javaee:param-value>
</init-param>
将前面的javaee:去掉即可。
java.lang.IllegalArgument,Parse error in application web.xml file at jndi:/localhost/WEB-INF/web.xml
标签:jee cat 代码 xml文件 自动 exce val can ati
原文地址:http://www.cnblogs.com/shisuiliunian/p/6400594.html