当我尝试运行我的RMI示例时,我收到一个远程异常。我不明白为什么。 我运行程序时没有任何程序本身或JVM的参数。
请帮我摆脱异常。
非常感谢
这是我得到的例外:
Server exception: java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
java.lang.ClassNotFoundException: hello.Hello
java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
java.lang.ClassNotFoundException: hello.Hello
这些是我的课程:
客户端类:
package hello;
import java.rmi.registry.LocateRegistry;
import java.rmi.registry.Registry;
public class Client {
private Client() {}
public static void main(String[] args) {
String host = (args.length < 1) ? null : args[0];
try {
Registry registry = LocateRegistry.getRegistry(host);
Hello stub = (Hello) registry.lookup("Hello");
String response = stub.sayHello();
System.out.println("response: " + response);
} catch (Exception e) {
System.err.println("Client exception: " + e.toString());
e.printStackTrace();
}
}
}
远程接口:
package hello;
import java.rmi.Remote;
import java.rmi.RemoteException;
public interface Hello extends Remote {
String sayHello() throws RemoteException;
}
最后是服务器:
package hello;
import java.rmi.registry.Registry;
import java.rmi.registry.LocateRegistry;
import java.rmi.RemoteException;
import java.rmi.server.UnicastRemoteObject;
public class Server implements Hello {
public Server() {}
public String sayHello() {
return "Hello, world!";
}
public static void main(String args[]) {
try {
Server obj = new Server();
Hello stub = (Hello) UnicastRemoteObject.exportObject(obj, 0);
// Bind the remote object's stub in the registry
Registry registry = LocateRegistry.getRegistry("localhost");
registry.bind("Hello", stub);
System.err.println("Server ready");
} catch (Exception e) {
System.err.println("Server exception: " + e.toString());
e.printStackTrace();
}
}
}
答案 0 :(得分:1)
注册表或客户端或两者都找不到异常中指定的类。有几种可能的解决方案:
在执行注册表和客户端时在类路径中包含该类。以及它依赖的所有类,递归直到关闭。
从服务器JVM内部启动注册表,使用LocateRegistry.createRegistry()
解决该类路径问题,并仅在客户端的类路径上提供必要的类。
使用代码库功能确保所有系统组件都可以访问所需的服务器端类。
答案 1 :(得分:-1)
您可能需要提供java.rmi.server.codebase
参数,列出RMI服务器导出对象所需的所有jar ...
请参阅Running the examples并查看“启动服务器”部分。另外,请务必查看有关运行客户端程序的部分以获取其他建议参数