我使用Java RMI进行了以下设置:
private static ServerInterface serverInterface;
private static Registry serverRegistry;
public static void main(String[] args) {
try {
serverRegistry = LocateRegistry.getRegistry(serverAddress, serverTCPPort);
String[] rpcList = serverRegistry.list();
serverInterface = (ServerInterface) serverRegistry.lookup(rpcList[0]);
debugPostIt("Server communication test succeeded.");
} catch (RemoteException | NotBoundException e) {
postIt("The specified server is not available!");
System.exit(1);
}
<< Some code that calls methodA() and methodB(Object o)>>
}
private boolean methodA(){
try{
serverInterface.someMethodA();
}catch(RemoteException e){
System.out.println("Communication fail in A.")
}
}
private boolean methodB(<<params>>){
<<Create a new object based on B>>
try{
serverInterface.someMethodB(Object o); // o is not Serializeable.
}catch(RemoteException e){
System.out.println("Communication fail in B.")
}
}
方法A每次都成功,但是方法B每次都会抛出一个RemoteException,即使运行接口的进程没有停止。它们发出的顺序无关紧要,A总是成功,B总是失败。当我在methodB中将someMethodB更改为someMethodA时,方法B不再失败。我在远程对象端进行了简单的检查,以查看该方法是否被访问,但事实并非如此。有人能告诉我这里可能会发生什么吗?
编辑:是否需要在RMI方法中传递对象,例如对象必须是可序列化的或与此类似的东西?
答案 0 :(得分:0)
万岁回答我自己的问题!
我对someMethodB()的输入参数是我创建的一个未实现Serializable的通用对象。将该点添加到类中可以解决问题。编辑问题以更准确地显示问题。
http://docs.oracle.com/javase/tutorial/rmi/implementing.html