gpt4 book ai didi

java.rmi.ServerException : RemoteException occurred in server thread (ClassNotFoundException) 异常

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:13:29 25 4
gpt4 key购买 nike

以下方法:

private void startServer() { // snippet that starts the server on the local machine
try {
RemoteMethodImpl impl = new RemoteMethodImpl();
Naming.rebind( "Illusive-Server" , impl );
}catch(Exception exc) {
JOptionPane.showMessageDialog(this, "Problem starting the server", "Error", JOptionPane.ERROR_MESSAGE);
System.out.println(exc);
}
}

抛出这个异常:java.rmi.ServerException: RemoteException occurred in server thread;嵌套异常是:
java.rmi.UnmarshalException:解码参数时出错;嵌套异常是:
java.lang.ClassNotFoundException: 接口(interface).RemoteMethodIntf

当我开始我的项目时,我收到 JOptionPane 中的消息,说启动服务器时出现问题,然后出现上述异常。这可能是什么原因?

我不明白为什么最后的异常声明说当我导入了正确的包时找不到类

最佳答案

这种异常有四种情况。

  1. 导出时:您没有运行“rmic”,也没有执行 UnicastRemoteObject 的 Javadoc 序言中描述的步骤以使其变得不必要。

  2. 绑定(bind)时:Registry 没有 stub 或远程接口(interface)或它们依赖于其类路径的东西。

  3. 查找时:客户端在其类路径中没有这些东西。

  4. 当调用远程方法时:您要么向不在其 CLASSPATH 中的类的服务器发送内容,要么从不在您的 CLASSPATH 中的类的服务器接收内容(包括异常):在这两种情况下可能是远程接口(interface)的方法签名中提到的类或接口(interface)的派生类或接口(interface)实现。

这是情况 2。注册表找不到指定的类。

有几种解决方法:

  1. 使用包含相关 JAR 或目录的 CLASSPATH 启动注册表。

  2. 通过 LocateRegistry.createRegistry() 在您的服务器 JVM 中启动注册表。

  3. 使用动态 stub ,如 UnicastRemoteObject 的 Javadoc 的序言中所述。 但是,您可能仍然会遇到与远程接口(interface)本身或它所依赖的类相同的问题,在这种情况下,上面的 1-3 仍然适用于该类/那些类。

  4. 确保上述情况 (4) 不会发生。

  5. 使用代码库功能。这确实是一个部署选项,IMO 是在初始开发阶段应该避免的事情。

关于java.rmi.ServerException : RemoteException occurred in server thread (ClassNotFoundException) 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9531158/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com