在Tomcat中,如果想使用Servlet调用器
(org.apache.catalina.servlets.InvokerServlet),要在conf/web.xml中,把调用器这个
servlet的注册和映射开启来。但对于Tomcat 6.X 而言,会出现下面错误:
java.lang.SecurityException:
Servlet of class org.apache.catalina.servlets.InvokerServlet is
privileged and cannot be loaded by this web application
修改conf/context.xml文件,新加两个属性
.
<Context
reloadable="true" privileged="true"
>
<!-- Default set of monitored resources -->
<WatchedResource>WEB-INF/web.xml</WatchedResource>
</Context>
本文介绍了如何在Tomcat 6.x版本中正确配置并启用InvokerServlet。当尝试使用该Servlet时,可能会遇到权限异常的问题。文章详细解释了通过修改context.xml文件中的属性以解决这一问题的方法。
2173

被折叠的 条评论
为什么被折叠?



