无法启动RMI Fibonacci服务器

时间:2014-04-08 12:43:32

标签: java rmi fibonacci java-server

我正在学习Java RMI,我创建了一个非常简单的服务器来计算Fibonacci数。服务器(FibonacciServer)创建一个负责计算序列的对象(Fibonacci),该对象实现一个接口(IFibonacci):

FibonacciServer.java:

package myrmifibonacciserver;

import java.net.MalformedURLException;
import java.rmi.Naming;
import java.rmi.RemoteException;

public class FibonacciServer {
    public static void main(String args[]){
        try{
            Fibonacci fib = new Fibonacci();
            Naming.rebind("fibonacci", fib);
            System.out.println("Fibonacci Server ready.");
        }catch(RemoteException rex){
            System.err.println("Exception in Fibonacci.main " + rex);
        } catch (MalformedURLException ex) {
            System.err.println("MalformedURLException " + ex);
        }
    }
}

斐波:

package myrmifibonacciserver;

import java.math.BigInteger;
import java.rmi.RemoteException;
import java.rmi.server.UnicastRemoteObject;

public class Fibonacci extends UnicastRemoteObject implements IFibonacci{

    private static final long serialVersionUID = -4300545841720809981L;

    public Fibonacci() throws RemoteException{
        super();
    }

    @Override
    public BigInteger getFibonacci(int n) throws RemoteException {
        return getFibonacci(new BigInteger(Long.toString(n)));
    }

    @Override
    public BigInteger getFibonacci(BigInteger n) throws RemoteException {
        System.out.println("Calculating teh " + n + "th Fibonacci number");
        BigInteger zero = BigInteger.ZERO;
        BigInteger one = BigInteger.ONE;

        if(n.equals(zero) || n.equals(one)) 
            return one;

        BigInteger current = one;
        BigInteger low = one;
        BigInteger high = one;
        BigInteger temp;

        while(current.compareTo(n) == -1){
            temp = high;
            high = high.add(low);
            low = temp;
            current = current.add(one);
        }
        return high;
    }

}

IFibonacci:

package myrmifibonacciserver;

import java.math.BigInteger;
import java.rmi.Remote;
import java.rmi.RemoteException;

public interface IFibonacci extends Remote{
    public BigInteger getFibonacci(int n) throws RemoteException;
    public BigInteger getFibonacci(BigInteger n) throws RemoteException;
}

如您所见,这是一个非常基本的例子。我正在使用命令rmiregistry &在Linux上启动RMI注册表,它启动没有问题。

但是,当我单击运行按钮(在Eclipse或Netbeans中)来运行我的小项目时,我收到一个错误:

Exception in Fibonacci.main java.rmi.ServerException: RemoteException occurred in server thread; nested exception is: 
    java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is: 
    java.lang.ClassNotFoundException: myrmifibonacciserver.IFibonacci

我不明白为什么! 起初我认为这是因为存根,但由于我使用的是java 1.7,因此会自动创建。我做错了什么?

2 个答案:

答案 0 :(得分:1)

找不到代码库。原因是,从JDK 7开始,java.rmi.server.useCodebaseOnly属性默认为 true ,而在以前的版本中默认为 false

当属性为 false 时,它会使用服务器的代码库,但在 true 的情况下,它会忽略它。

http://docs.oracle.com/javase/7/docs/technotes/guides/rmi/enhancements-7.html

您的问题将在较低的JDK中解决。前JDK6

答案 1 :(得分:1)

注册表在其CLASSPATH上没有可用的命名类和/或您还没有正确设置代码库(如果有的话)。您不必使用代码库功能,但如果您这样做,则必须正确。更简单的方法可能是通过LocateRegistry.createRegistry()在服务器JVM中启动注册表。