gpt4 book ai didi

java - 服务器在 Naming.rebind 时中断

转载 作者:行者123 更新时间:2023-12-01 13:38:35 25 4
gpt4 key购买 nike

我正在服务器上做一个议程,一切都很顺利,我启动了 RMI 注册表,服务器工作正常,我测试了代码并且能够登录。现在我想开始将代码放入方法中并从服务器在客户端中调用它们,当我将 Naming.rebind("server", i); 放入服务器中以调用方法时代码中断。

我的项目包含三个类:服务器、客户端和从服务器到客户端调用方法的接口(interface)。这是服务器的代码:

public class ServerAgendas extends UnicastRemoteObject 
implements InterfaceServer {


private static final long serialVersionUID = 1L;

protected ServerAgendas() throws RemoteException {
super();
// TODO Auto-generated constructor stub
}

static String Clientusername;
static String Clientpassword;

public static void main (String args[]) throws NotBoundException,
IOException {
System.out.println("1");

try{
InterfaceServer i = new ServerAgendas();
System.out.println("2");
Naming.rebind("server",i);
System.out.println("Serveur agendas pret");
}
catch (Exception e){
System.err.println("Error "+e.getMessage());
}

ServerSocket ASocket = new ServerSocket(portNumber);
Socket connectionSocket = ASocket.accept();

}

public boolean login(String ClientUsername, String ClientPassword)
throws IOException, SQLException {
}

在客户端我用它来调用方法:

InterfaceServer i = (InterfaceServer)Naming.lookup("server");

System.out.println(i.login(username, password));

界面包含:

public interface InterfaceServer extends Remote{

public boolean login(String Clientusername, String Clientpassword)
throws RemoteException, IOException, SQLException;

我首先运行注册表,然后运行服务器,控制台显示:

 1
2
Error RemoteException occurred in server thread; nested exception is:
java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
java.lang.ClassNotFoundException: InterfaceServer

我使用 1 和 2 来查看它在哪里损坏,它损坏于:

Naming.rebind("server",i);

我需要做什么才能避免发生此异常?

最佳答案

消息中提到的类对于注册表的 CLASSPATH 不可用。

解决这个问题和其他几个问题的最简单的解决方案是使用 LocateRegistry.createRegistry() 在服务器 JVM 内运行注册表。

否则,您将必须弄清楚如何使用 CLASSPATH 参数启动 rmiregistry 命令,或者使用代码库功能,这完全是另一回事。

关于java - 服务器在 Naming.rebind 时中断,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21041880/

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