严重: Parse error in application file at jndi:/localhost/beyond/WEB-INF/web.xml

简介java

      有时在修改项目名称时会报错:web

      缘由是web.xml中标签前缀在项目转换中被修改为<javaee:param-name>,替换掉javaee:就能够了!apache

 

java.lang.IllegalArgumentException: Can't convert argument: null
at org.apache.tomcat.util.IntrospectionUtils.convert(IntrospectionUtils.java:1005)
at org.apache.tomcat.util.digester.CallMethodRule.end(CallMethodRule.java:523)
at org.apache.tomcat.util.digester.Rule.end(Rule.java:229)
at org.apache.tomcat.util.digester.Digester.endElement(Digester.java:1138)

at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:414)tomcat

2013-10-10 16:44:43 org.apache.catalina.startup.ContextConfig applicationWebConfigapp

严重: Parse error in application web.xml file at jndi:/localhost/beyond/WEB-INF/web.xmlspa

java.lang.IllegalArgumentException: Can't convert argument: nullcode

at org.apache.tomcat.util.digester.Digester.createSAXException(Digester.java:2806)orm

 

 缘由是javaee:,只要替换掉这个前缀就能够了。xml

web.xml:
<context-param>
    <javaee:param-name>contextConfigLocation</javaee:param-name>
    <javaee:param-value>
			/WEB-INF/conf/*/*.xml 
		</javaee:param-value>
  </context-param>
相关文章
相关标签/搜索