……继续上一篇的内容
原理搞清楚了那就准备写服务端和客户端吧!
首先把服务端搭建起来吧,由于项目是基于spring的rmi实现。因此服务端需要spring相关配置:
引入spring依赖的相关jar包:
然后开始代码编写,由于rmi需要接口来传递对象,需要先建立接口:
以下内容借鉴转载于:这位大牛的(由于我的工程涉及公司信息,就贴出别的大牛的吧,逻辑一样)
publicinterfaceHelloService {
/**
* 简单的返回“Hello World!"字样
*
* @return 返回“Hello World!"字样
*/
publicString helloWorld();
/**
* 一个简单的业务方法,根据传入的人名返回相应的问候语
*
* @param someBodyName 人名
* @return 返回相应的问候语
*/
publicString sayHelloToSomeBody(String someBodyName);
}
publicclassHelloServiceImplimplementsHelloService {
publicHelloServiceImpl() {
}
/**
* 简单的返回“Hello World!"字样
*
* @return 返回“Hello World!"字样
*/
publicString helloWorld() {
return"Hello World!";
}
/**
* 一个简单的业务方法,根据传入的人名返回相应的问候语
*
* @param someBodyName 人名
* @return 返回相应的问候语
*/
publicString sayHelloToSomeBody(String someBodyName) {
return"你好,"+ someBodyName +"!";
}
}
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN"
"http://www.springframework.org/dtd/spring-beans.dtd">
< beans >
< bean id ="helloService" class ="lavasoft.sturmi.HelloServiceImpl" />
< bean id ="serviceExporter" class ="org.springframework.remoting.rmi.RmiServiceExporter" >
< property name ="service" ref ="helloService" />
<!-- 定义服务名-->
< property name ="serviceName" value ="hello" />
< property name ="serviceInterface" value ="lavasoft.sturmi.HelloService" />
< property name ="registryPort" value ="8088" />
</ bean >
</ beans >
/**
* 通过Spring发布RMI服务
*
* @author leizhimin 2009-8-17 14:22:06
*/
publicclassHelloHost {
publicstaticvoidmain(String[] args) {
ApplicationContext ctx =newClassPathXmlApplicationContext("/applicationContext_rmi_server.xml");
System.out.println("RMI服务伴随Spring的启动而启动了.....");
}
}
客户端调用:
< beans
xmlns ="http://www.springframework.org/schema/beans"
xmlns:xsi ="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation ="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd" >
< bean id ="helloService" class ="org.springframework.remoting.rmi.RmiProxyFactoryBean" >
< property name ="serviceUrl" value ="rmi://192.168.14.117:8088/hello" />
< property name ="serviceInterface" value ="lavasoft.sturmi.HelloService" />
</ bean >
< bean id ="helloServiceClient" class ="lavasoft.sturmi.HelloClient" >
< property name ="helloService" ref ="helloService" />
</ bean >
</ beans >
publicclassHelloClient {
privateHelloService helloService;
publicstaticvoidmain(String[] args)throwsRemoteException {
ApplicationContext ctx =newClassPathXmlApplicationContext("/applicationContext_rmi_client.xml");
HelloService hs = (HelloService) ctx.getBean("helloService");
System.out.println(hs.helloWorld());
System.out.println(hs.sayHelloToSomeBody("Lavasoft"));
}
publicvoidsetHelloService(HelloService helloService) {
this.helloService = helloService;
}
}
就这样spring的rmi调用整合就完成了!祝你好运!