0

我有一个 RMI 应用程序的项目。当我可以在 eclipse 下成功测试它们(使用RMI Plugin)时,我尝试使用 eclipse 的导出功能将它们导出为 jar 文件。

问题是只有一个应用程序可以很好地处理导出的 jar 文件。

java -jar registry.jar

java.rmi.ServerException: RemoteException occurred in server thread; nested exception is: 
java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is: 
java.lang.ClassNotFoundException: common.Registry <-- ???

错误消息显示未找到该类。我解压jar文件,发现jar文件中导出的类很好。

temp> unzip registry.jar 
Archive:  registry.jar
  inflating: META-INF/MANIFEST.MF    
   creating: client/
  inflating: client/ChatClientImpl.class  
   creating: common/
  inflating: common/ChatRoomProvider.class  
  inflating: common/Entity.class     
  inflating: common/ChatRoomServer.class  
  inflating: common/ChatClient.class  
  inflating: common/Registry.class  <<<--- 

这是从 rmiregistry 捕获的消息:

Exception dispatching call to [0:0:0, 0] in thread 
"RMI TCP Connection(2)-146.6.53.181" at Sun Nov 03 20:33:25 CST 2013:
java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is: 
    java.lang.ClassNotFoundException: common.Registry

这是发生错误的代码:

try {
    // clients and providers can access with the name Registry
    Naming.rebind("Registry", new RegistryImpl()); <--
} catch (Exception e) {
    e.printStackTrace();
}

可能是什么问题?为什么jar文件在其jar文件中找不到类文件?

添加

临时解决方案如下:

java -Djava.rmi.server.codebase=file:/WHERE_THE_BIN_IS/bin/ -jar registry.jar 

我可以明确指向代码库目录,但相同的代码已经在 jar 文件中。

4

1 回答 1

1

当我执行 rmiregister 并设置代码库所在的 CLASSPATH 时,此问题已解决。

export CLASSPATH=SOMEWHERE_THE_LOCAL_BASE_IS_LOCATED
rmiregistry 
于 2013-11-07T18:02:13.213 回答