簡體   English   中英

具有客戶端異常的簡單RMI應用程序

[英]Simple RMI application with client-side exception

我使用Java 8,並創建了一個簡單的RMI應用程序,但是有一個我不理解的客戶端異常。 使用Eclipse,我的應用程序結構為:

---RMI_project     
-----bin
-------client
----------ImplementazioneMyClassServer_Stub.class
----------InterfacciaMyClassServer.class
----------MainClient.class
-------server
----------ImplementazioneMyClassServer.class
----------InterfacciaMyClassServer.class
----------ImplementazioneMyClassServer_Stub.class
----------ImplementazioneMyClassServer_Skel.class
----------MainServer.class
-----src 
-------client
----------InterfacciaMyClassServer.java
----------MainClient.java
-------server
----------ImplementazioneMyClassServer.java
----------InterfacciaMyClassServer.java
----------MainServer.java

這是代碼:

InterfacciaMyClassServer.java

package client;

import java.rmi.*; // necessaria per estendere interfaccia Remote

public interface InterfacciaMyClassServer extends Remote {
 int somma(int a, int b) throws RemoteException;        //unico metodo
}

ImplementazioneMyClassServer.java

package server;

import java.rmi.*;
import java.rmi.server.*;  // per utilizzare UnicastRemoteObject

public class ImplementazioneMyClassServer extends UnicastRemoteObject implements InterfacciaMyClassServer{

    private static final long serialVersionUID = 1L;

    public ImplementazioneMyClassServer() throws RemoteException {      // costruttore
        System.out.println("ok1");
    }

    public int somma(int a, int b) throws RemoteException{      // implementazione metodo somma definito dall'interfaccia
        return a+b;
    }
}

MainServer.java

package server;

import java.rmi.*;

public class MainServer {

    public static void main(String[] args) {

        try{
            ImplementazioneMyClassServer s1 = new   ImplementazioneMyClassServer();

            System.out.println("ok2");

            Naming.rebind("oggetto1", s1);

            System.out.println("ok3");
        }
        catch(Exception e){
            System.out.println(e);
        }
    }

}

MainClient.java

package client;

import java.net.MalformedURLException;
import java.rmi.*;

public class MainClient {

    public static void main(String[] args) throws MalformedURLException, RemoteException, NotBoundException {

        String nomeServer="localhost";        // nome del server o suo    indirizzo IP (per l'esempio localhost=127.0.0.1)
        String nomeOggettoRemoto="oggetto1";   // nome dell'oggetto remoto da richiedere al server 
        String protocollo="rmi";              //protocollo usato, può essere: rmi,ftp,http
        String URLoggettoRemoto=protocollo+"://"+nomeServer+"/"+nomeOggettoRemoto;  // URL completo usato dal client per ottenere riferimento oggetto remoto sul server 

        // cerca all'URL specificato all'interno del registro rmi l'oggetto remoto con nome "oggetto1"
        // e restituisce nella var oggetto il suo riferimento per cui nelle istruzioni successive
        // è possibile riferirsi all'oggetto remoto come se fosse sul client.
        InterfacciaMyClassServer oggetto = (InterfacciaMyClassServer) Naming.lookup(URLoggettoRemoto);

        // uso oggetto remoto
        System.out.println(oggetto.somma(2, 3));
    }

}

我不想動態下載存根類。 這就是為什么我得到了存根和存根類,然后將存根類復制到bin \\ client中的原因。 要獲取存根和存根類,我遵循以下過程:

1) set classpath=C:\JavaWorkspace\RMI_project\src
2) cd C:\JavaWorkspace\RMI_project\src
3) C:\JavaWorkspace\RMI_project\src>javac server/InterfacciaMyClassServer.java
4) C:\JavaWorkspace\RMI_project\src>javac  server/ImplementazioneMyClassServer.java
5) C:\JavaWorkspace\RMI_project\src>rmic -v1.1 server.ImplementazioneMyClassServer

要運行整個應用程序,請按照以下步驟操作:

通過提示符1:

1) set classpath=C:/JavaWorkspace/RMI_project/bin
2) start rmiregistry
3) java server.MainServer

我正確地:

ok1
ok2
ok3

通過提示符2:

1) set classpath=C:/JavaWorkspace/RMI_project/bin
2) java client.MainClient

我哪里有例外:

Exception in thread "main" java.lang.ClassCastException: server.ImplementazioneMyClassServer_Stub cannot be cast to client.InterfacciaMyClassServer 
at client.MainClient.main(MainClient.java:18)

MainClient中的第18行是一個例外,但是我不明白這是什么錯誤。

您在兩個程序包中聲明了遠程接口。 服務器端使用服務器軟件包的遠程接口。 客戶端使用客戶端程序包的遠程接口。 這兩個遠程接口是不同的。 您不能將一個實現轉換為另一個實現。

你做不到 您需要在兩端使用相同的遠程接口,並且使用相同的程序包。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM