java.lang.IllegalArgument,Parse error in application web.xml file at jndi:/localhost/WEB-INF/web.xml
Posted 易彦
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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代码
<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的主要内容,如果未能解决你的问题,请参考以下文章