如果服务器未启动,我想向用户显示错误消息。
当用户正在启动程序时。
下面我提到了ServerConnector单例类,该类用于连接整个应用程序的服务器。

public class ServerConnector {



private static ServerConnector serverConnector;
    private RemoteFactory remoteFactory;

    private ServerConnector() throws NotBoundException, MalformedURLException,
            RemoteException {
        remoteFactory = (RemoteFactory) Naming
                .lookup("rmi://localhost:5050/RoomReservation");
    }

    public static ServerConnector getServerConnector()
            throws NotBoundException, MalformedURLException, RemoteException {
        if (serverConnector == null) {
            serverConnector = new ServerConnector();
        }
        return serverConnector;
    }

    public CustomerController getCustomerController() throws RemoteException {
        return remoteFactory.getCustomerController();
    }


}


在加载程序的GUI之前,有什么方法可以检查服务器是否已启动?

谢谢。

最佳答案

赶上java.rmi.ConnectException。这意味着注册表尚未启动。
赶上NotBoundException。这意味着服务器尚未绑定到注册表。

10-08 11:12