授予权限时可以替代策略文件吗?
是否可以通过策略文件以外的方式授予权限?我想要实现的是一个可以在运行时修改的基于权限的系统。
Is it possible to grant Permissions through something other than a policy file? What I'd like to achieve is a permissions-based system that can be modified at runtime.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以安装自己的安全管理器,
在 YourSecurityManager 中,您可以从任何您喜欢的来源读取权限。
SecurityManager 在整个 Java 中都使用。您应该向默认管理器检查您不关心的权限。
性能也至关重要。 SecurityManager 在 JRE 中经常被检查。如果实施不当,它可能会减慢您的系统速度。
You can install your own security manager,
In YourSecurityManager, you can read permission from whatever sources you like.
The SecurityManager is used through out Java. You should check with default manager for the permissions you don't care.
Performance is also crucial. SecurityManager is checked quite often in JRE. It can slow down your system to a crawl if not implemented properly.