首页 > 学院 > 开发设计 > 正文

tomcat7.0.52及以上版本web.xml引用外部文件问题

2019-11-09 18:48:23
字体:
来源:转载
供稿:网友

启动安装版tomcat7.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">


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表