6

我正在尝试运行在 java rmi 中开发的桌面应用程序。当我尝试在 Eclipse 中执行此应用程序时,出现以下错误。请任何人帮助我提前谢谢。

Exception in thread "main" java.security.AccessControlException: access denied (java.util.PropertyPermission * read,write)
    at java.security.AccessControlContext.checkPermission(Unknown Source)
    at java.security.AccessController.checkPermission(Unknown Source)
    at java.lang.SecurityManager.checkPermission(Unknown Source)
    at java.lang.SecurityManager.checkPropertiesAccess(Unknown Source)
    at java.lang.System.getProperties(Unknown Source)
    at .HeadOfficeManager.Manager.main(Manager.java:103)

这是代码。

public static void main(String args[])
{
    Manager frame = new Manager();
    frame.setVisible(true);
    // frame.show(); old 1.4

    // Create and install a security manager
    if (System.getSecurityManager()== null)
    {
        System.setSecurityManager(new RMISecurityManager());
    }
    try
    {
        Properties prop = System.getProperties();
        String httpPath = prop.getProperty("HTTPPath");
        new ClassFileServer(80, httpPath);
    }
    catch (IOException e)
    {}

    try
    {
        java.rmi.registry.LocateRegistry.createRegistry(1099);
        System.out.println("RMI registry ready.");
    }
    catch (Exception e)
    {
        System.out.println("Exception starting RMI registry:");
        e.printStackTrace();
    }
    try
    {
        RMIHandler = new ManagerRMIHandler();

        // Bind the remote object's stub in the registry
        Registry registry = LocateRegistry.getRegistry();
        registry.rebind("HeadOfficeManager", RMIHandler);

        System.err.println("Server ready");
    }
    catch (Exception e)
    {
        System.err.println("Server exception: " + e.toString());
        e.printStackTrace();
    }
4

2 回答 2

13
  1. 右键单击eclipse中的应用程序,然后单击运行配置。
  2. 将虚拟机参数添加为 -Djava.security.policy =java.policy.applet.
  3. 创建一个文件,命名为java.policy.applet.
  4. 在该文件中添加以下行。

    grant  
    {  
        permission java.security.AllPermission;  
    };
    
  5. 保存并运行应用程序。

这将为您的 Java 应用程序提供所有安全权限。

于 2012-09-12T12:22:43.577 回答
2

你已经安装了一个 SecurityManager,但你没有在你的 .policy 文件中给自己足够的权限来执行你的代码。异常告诉您缺少哪些权限,但可能还有更多。使用 -Djava.security.debug=access,failure 运行您的应用程序以查看还有哪些其他安全问题。

但这里真正的问题是为什么是安全经理?如果您正在使用 RMI 代码库功能,则从 RMI 的角度来看,您只需要在 RMI 服务器中使用它。否则你应该考虑删除它。

此外,您必须将结果存储在createRegistry不会被垃圾收集的地方,例如静态变量中。一旦你这样做了,这个getRegistry()电话就是多余的。

于 2012-06-11T11:00:43.317 回答