我怎样才能在java程序本身中实现我的安全策略
我对 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.