何时创建 Stub、启动 Registry 并指定 Codebase?
我创建了一个 RMI 应用程序。我的简单应用程序有效。我的构建路径中有 RemoteObjInterface.class 的包,用于客户端和服务器包。我首先启动服务器应用程序,然后启动客户端应用程序。
但是,我查看了互联网上的其他示例,我看到它们启动了注册表,创建了一个存根并指定了一个代码库。
以下是我的程序:
“ RemoteObjInterface.class ”是我的接口,“ RemoteObjImplementation.class ”是我的服务器,“ Client.class ”是我的客户端。
public interface RemoteObjInterface extends Remote {
public String someMethod() throws RemoteException;
}
public class RemoteObjImplementation extends UnicastRemoteObject implements
RemoteObjInterface {
private static final long serialVersionUID = 1L;
private static final int PORT = 1099;
private static Registry registry;
public RemoteObjImplementation() throws RemoteException {
super();
}
@Override
public String someMethod() throws RemoteException {
return new String("Hello");
}
public static void main(String args[]) {
Registry registry = LocateRegistry.createRegistry(PORT);
registry.bind(RemoteObjInterface.class.getSimpleName(),
new RemoteObjImplementation());
}
}
public class Client {
private static final String HOST = "localhost";
private static final int PORT = 1099;
private static Registry registry;
public static void main(String[] args) throws Exception {
registry = LocateRegistry.getRegistry(HOST, PORT);
RemoteObjInterface remoteApi = (RemoteObjInterface) registry.lookup(RemoteObjInterface.class.getSimpleName());
System.out.println("Message = " +
remoteApi.someMethod();
}
}