我怎样才能在java程序本身中实现我的安全策略

发布于 2024-07-14 16:26:45 字数 208 浏览 4 评论 0原文

我对 java-RMI 非常陌生,并在其上开发了一个小应用程序。但是要运行我的服务器和客户端,我需要执行- Java -Djava.security.policy=client.policy

那么我应该怎么做才能省略 '-Djava.security.policy=client.policy' 这个命令呢? 或者有什么方法可以在java程序中实现安全策略? 提前致谢。

I am really new in java-RMI and developed a small application on it.But to run my server and client I need to execute-
Java -Djava.security.policy=client.policy

So what should I do to ommite '-Djava.security.policy=client.policy' this command? Or is there any way to implement the security policy in java program?
Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

紫瑟鸿黎 2024-07-21 16:26:45

RMI 应用程序中需要策略文件,以便客户端可以连接到远程服务器。您还需要在客户端和服务器中实现 securityManager。 这个安全管理器将允许您连接到客户端要连接的任何 RMI 远程主机。我认为策略文件不能在 RMI 中省略。 这是必需的。

Policy file is required in RMI Application so that client can connect to the remote server.you also need to implement the securityManager in the client as well as in the Server. this security manager will allow you to connect to any rmi remote host to which client is intended to connect.I think policy file cannot be ommitted in RMI. it is required.

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