- 浏览: 548632 次
- 性别:
- 来自: 上海
-
文章分类
- 全部博客 (231)
- 一个操作系统的实现 (20)
- 汇编(NASM) (12)
- Linux编程 (11)
- 项目管理 (4)
- 计算机网络 (8)
- 设计模式(抽象&封装) (17)
- 数据结构和算法 (32)
- java基础 (6)
- UML细节 (2)
- C/C++ (31)
- Windows (2)
- 乱七八糟 (13)
- MyLaB (6)
- 系统程序员-成长计划 (8)
- POJ部分题目 (10)
- 数学 (6)
- 分布式 & 云计算 (2)
- python (13)
- 面试 (1)
- 链接、装载与库 (11)
- java并行编程 (3)
- 数据库 (0)
- 体系结构 (3)
- C++ template / STL (4)
- Linux环境和脚本 (6)
最新评论
-
chuanwang66:
默默水塘 写道typedef void(*Fun)(void) ...
C++虚函数表(转) -
默默水塘:
typedef void(*Fun)(void);
C++虚函数表(转) -
lishaoqingmn:
写的很好,例子简单明了,将观察者模式都表达了出来。
这里是ja ...
观察者模式——Observer
因为我本科毕业设计中大量采用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、运行效果
发表评论
-
(第十章)一个xml解析器和构造器
2013-03-10 16:40 952本章的前两节“10.1 状态机”、“10.2 ... -
享元模式——Flyweight
2012-02-17 13:10 1087享元模式——Flyweig ... -
工厂方法和抽象工厂——Factory Method & Abstract Factory
2012-01-04 17:14 2108一、使用抽象工厂和工厂方法 Factory Me ... -
单例模式——Singleton
2012-01-04 17:08 1026public class Singleton { ... -
观察者模式——Observer
2012-01-04 16:25 1341观察者模式—— Observer ... -
适配器模式——Adaptor(Adapter)
2012-01-01 18:23 1572适配器模式 —— Adapto ... -
状态模式——State (更好的实现状态机)
2011-12-28 14:10 657181. 概述 The intent o ... -
装饰者模式——Decorator
2011-12-25 11:11 1203装饰者模式—— Decorator ... -
组合模式——Composite
2011-12-24 14:27 10251. Composite 定义 : ... -
构造者模式——Builder
2011-08-10 13:59 1093构造者模式——Builder 本文是《Java设计模 ... -
责任链模式——Chain of Responsibility
2011-08-10 11:26 954一、总结《Java设计模式》Chapter12 Chain o ... -
代理模式Dynamic Proxies(四、Struts2.0拦截器Interceptor)
2011-08-01 11:31 1439一、概念和注意点: Once you write a d ... -
代理模式Image Proxies(二、最朴素实现)
2011-07-31 11:55 1010在前面《 代理模式Image Proxies(一、最朴素实现) ... -
命令模式——Command
2011-06-10 10:31 972偷懒一下,直接用JavaEye上chjavach老兄的文章了, ... -
代理模式Image Proxies(一、最朴素实现)
2011-06-03 09:27 1084A Classic Example: Image Prox ... -
策略模式——strategy
2011-06-02 12:36 915Strategy Pattern ...
相关推荐
在Java RMI的现代版本中,Skeleton已不再必要,大部分功能由动态代理(Dynamic Proxies)实现,简化了RMI的使用。 4. **注册表(Registry)**:RMI注册表是服务发现的关键组件。它是一个简单的命名服务,用于存储...
在Java的远程方法调用(Remote Method Invocation, RMI)技术中,智能代理(Smart Proxies)和拦截器(Interceptors)是两个重要的概念,它们为分布式系统提供了增强的功能和控制。本文将深入探讨这两个概念及其在...
在IT行业中,Ice(Interface for Communication over Reliability Environments)是一种高效的分布式对象中间件,它提供了跨语言、跨平台的远程方法调用(Remote Method Invocation, RMI)能力。QtGui则是Qt库的一...
最后,Java 6.0的API文档还包括对JDBC(Java Database Connectivity)、RMI(Remote Method Invocation)、JMS(Java Message Service)等企业级技术的详细描述,帮助开发者更好地集成数据库、分布式计算和消息传递...
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...
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 ...
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 ...