java.security.AccessControlException: access denied (java.io.FilePermission /usr/share/java/jsp-api-2.0.jar read)(java.security.AccessControlException:访问被拒绝(java.io.FilePermission/usr/share/java/jsp-api-2.0.jar 读取))
问题描述
我正在尝试将我的应用程序部署到 Debian Lenny 上的 Tomcat 5.5.我收到以下异常:
I am trying to deploy me application to Tomcat 5.5 on Debian Lenny. I am getting the following exception:
java.security.AccessControlException: access denied (java.io.FilePermission /usr/share/java/jsp-api-2.0.jar read)
我不知道该怎么办.
解决方案
将以下行添加到/etc/tomcat5.5/policy.d/04webapps.policy:
Add the following line to /etc/tomcat5.5/policy.d/04webapps.policy:
grant codeBase "file:/var/lib/tomcat5.5/webapps/mywebapp/-" { permission java.security.AllPermission; };
推荐答案
我闻起来像 SecurityManager.
I smells like an SecurityManager.
这是来自 Java 安全管理器的消息,而不是来自文件系统的消息.此 jar-archive 中的类尝试访问策略不允许的文件.
It is a message from the Java Security-Manager not from the filesystem. A class within this jar-archive tries to access a file, which is not allowed by the policy.
看看这个非常相似的问题:http://www.mkyong.com/tomcat/tomcat-javasecurityaccesscontrolexception-access-denied-loggingproperties-read/
Take a look at this really similar problem: http://www.mkyong.com/tomcat/tomcat-javasecurityaccesscontrolexception-access-denied-loggingproperties-read/
解决方案是允许读取 catalina.policy
这篇关于java.security.AccessControlException:访问被拒绝(java.io.FilePermission/usr/share/java/jsp-api-2.0.jar 读取)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:java.security.AccessControlException:访问被拒绝(java.io.FilePermission/usr/share/java/jsp-api-2.0.jar 读取)
基础教程推荐
- 在螺旋中写一个字符串 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01