将属性“antiJARLocking”设置为“true”未找到匹配的属性

2022-09-03 00:44:39

我的上下文.xml文件:

 <?xml version="1.0" encoding="UTF-8"?>
<Context antiJARLocking="true" path="/candy"/>

我怎么能摆脱这个警告?我的项目在 Netbeans 和 Tomcat 8.0.9 上运行:将属性“antiJARLocking”设置为“true”未找到匹配的属性


答案 1

antiJARLocking是Tomcat 7中的一个属性,在Tomcat 8中已被删除。

因此,对于Tomcat 8,只需使用反资源锁定即可。

https://tomcat.apache.org/tomcat-7.0-doc/config/context.html

https://tomcat.apache.org/tomcat-8.0-doc/config/context.html


答案 2

从上下文.xml文件中删除该属性。雄猫不支持它。


推荐