启动安装版tomcat 7.0.52报错:java.io.FileNotFoundException: Could not resolve XML resource [null] with public ID [null], system ID [web-init.xml] and base URI [jndi:/localhost/WEB-INF/web.xml] to a known, local entity.
tomcat7.0.52开始的版本才会出这个问题,是因为安全的考虑tomcat7.0.52开始的版本把xmlBlockExterna属性默认为true,要解决这个问题,两种方法:
(1)把tomcat版本换成7.0.52之前的版本。
(2)把xmlBlockExterna设成false。
但是我现在必须使用tomcat7.0.52及其以上版本,所以采用方法(2)。解决方法如下:
tomcat安装配置文件context.xml添加false设置
E:\tomcat\Tomcat7.0.52\conf\context.xml
设置前:<Context>
设置后:<Context xmlBlockExternal="false">