`

代理模式Remote Proxies(三、RMI)

 
阅读更多

因为我本科毕业设计中大量采用RMI实现分布式,且使用了Eclipse中用于开发RMI的插件,这里主要阐述以下几点:

一、注意;

二、代码;

三、如何手工编写RMI应用。

 

一、注意

1)RMI产生stub的改进

P128. Earlier versions of the JDK constructed separate (stub) files for use on the client and server machines. As of 1.2, the RMI compiler("rmic" command) creates a single stub file that both the client and server machines need.

 

2)RMI的好处——远程代理的好处

P131 The benefit of RMI is that it lets client programs("ShowRocket Client") interact with a local object("RocketImpl_Stub") that is a proxy for a remote object("RocketImpl")!!!

“本地的代理”代理了“远程真正实现服务的对象”

 

二、代码

接口Rocket.java

 

package com.oozinoz.remote;

import java.rmi.*;

public interface Rocket extends Remote {
    void boost(double factor) throws RemoteException;
    double getApogee() throws RemoteException;
    double getPrice() throws RemoteException;
}

 

接口实现RocketImpl.java

package com.oozinoz.remote;

import java.rmi.*;
import java.rmi.server.UnicastRemoteObject;

public class RocketImpl extends UnicastRemoteObject implements Rocket {
    protected double price;
    protected double apogee;

    public RocketImpl(double price, double apogee) throws RemoteException {
        this.price = price;
        this.apogee = apogee;
    }

    public void boost(double factor) {
        apogee *= factor;
    }

    public double getApogee() throws RemoteException {
        return apogee;
    }

    public double getPrice() throws RemoteException {
        return price;
    }
}

 

在网络上某个节点注册一个对象RegisterRocket.java

package com.oozinoz.remote;

import java.rmi.*;

public class RegisterRocket {

    public static void main(String[] args) {
        try {
            Rocket biggie = new RocketImpl(29.95, 820);
            Naming.rebind("rmi://localhost:5000/Biggie", biggie);
            System.out.println("Registered biggie");
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

 在网络上另一个节点查询这个对象ShowRocketClient.java

package com.oozinoz.remote;

import java.rmi.*;

public class ShowRocketClient {

    public static void main(String[] args) {
        try {
            Object obj = Naming.lookup("rmi://localhost:5000/Biggie");
            Rocket biggie = (Rocket) obj;
            System.out.println("Apogee is " + biggie.getApogee());
        } catch (Exception e) {
            System.out.println("Exception while looking up a rocket:");
            e.printStackTrace();
        }
    }
}

  

三、手工编写RMI应用

1、编译

rmi>dir
Rocket.java
RocketImpl.java
RegisterRocket.java
ShowRocketClient.java

rmi>javac -d . *.java --> 编译java文件,指定存放生成类文件的位置
rmi>dir
Rocket.java
RocketImpl.java
RegisterRocket.java
ShowRocketClient.java
com\oozinoz\remote
Rocket.class
RocketImpl.class
RegisterRocket.class
ShowRocketClient.class

 

2、生成Stub,这个Stub在客户端和服务器端都要使用

rmi>rmic com.oozinoz.remote.RocketImpl
--> 为RocketImpl生成Stub,这个Stub需要被放到客户端和服务器两端
rmi>dir
Rocket.java
RocketImpl.java
RegisterRocket.java
ShowRocketClient.java
com\oozinoz\remote
Rocket.class
RocketImpl.class
RegisterRocket.class
ShowRocketClient.class
RocketImpl_Stub.class

 

3、运行效果

  • 大小: 268.4 KB
分享到:
评论

相关推荐

    rmi.rar_rmi

    在Java RMI的现代版本中,Skeleton已不再必要,大部分功能由动态代理(Dynamic Proxies)实现,简化了RMI的使用。 4. **注册表(Registry)**:RMI注册表是服务发现的关键组件。它是一个简单的命名服务,用于存储...

    Smart Proxies and Interceptors in RMI-开源

    在Java的远程方法调用(Remote Method Invocation, RMI)技术中,智能代理(Smart Proxies)和拦截器(Interceptors)是两个重要的概念,它们为分布式系统提供了增强的功能和控制。本文将深入探讨这两个概念及其在...

    QtGui接收Ice回调消息示例工程

    在IT行业中,Ice(Interface for Communication over Reliability Environments)是一种高效的分布式对象中间件,它提供了跨语言、跨平台的远程方法调用(Remote Method Invocation, RMI)能力。QtGui则是Qt库的一...

    java6.0 API 英文版

    最后,Java 6.0的API文档还包括对JDBC(Java Database Connectivity)、RMI(Remote Method Invocation)、JMS(Java Message Service)等企业级技术的详细描述,帮助开发者更好地集成数据库、分布式计算和消息传递...

    Java Network Programming 3rd Edition By Elliotte Rusty Harold 2004

    Proxies Section 7.5. Communicating with Server-Side Programs Through GET Section 7.6. Accessing Password-Protected Sites Chapter 8. HTML in Swing Section 8.1. HTML on Components Section 8.2...

    Java2核心技术卷I+卷2:基础知识(第8版) 代码

    The RMI Programming Model 846 Parameters and Return Values in Remote Methods 856 Remote Object Activation 865 Web Services and JAX-WS 871 Chapter 11: Scripting, Compiling, and Annotation ...

    Manning.Spring.in.Action.4th.Edition.2014.11.epub

    3.4.2. Declaring scoped proxies in XML 3.5. Runtime value injection 3.5.1. Injecting external values 3.5.2. Wiring with the Spring Expression Language 3.6. Summary Chapter 4. Aspect-oriented Spring ...

Global site tag (gtag.js) - Google Analytics