授予权限时可以替代策略文件吗?

发布于 2024-09-08 08:52:02 字数 53 浏览 10 评论 0原文

是否可以通过策略文件以外的方式授予权限?我想要实现的是一个可以在运行时修改的基于权限的系统。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦里泪两行 2024-09-15 08:52:02

您可以安装自己的安全管理器,

 System.setSecurityManager(new YourSecurityManager());

在 YourSecurityManager 中,您可以从任何您喜欢的来源读取权限。

SecurityManager 在整个 Java 中都使用。您应该向默认管理器检查您不关心的权限。

性能也至关重要。 SecurityManager 在 JRE 中经常被检查。如果实施不当,它可能会减慢您的系统速度。

You can install your own security manager,

 System.setSecurityManager(new YourSecurityManager());

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文