Rendezvous with Rama
Rendezvous with Rama
BlogJava
::
首页
::
新随笔
::
联系
::
聚合
::
管理
posts - 1, comments - 1, trackbacks - 0
<
2025年4月
>
日
一
二
三
四
五
六
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
1
2
3
4
5
6
7
8
9
10
常用链接
我的随笔
我的评论
我的参与
最新评论
留言簿
(1)
给我留言
查看公开留言
查看私人留言
随笔档案
2006年6月 (1)
文章分类
Eclipse(5)
Java(3)
Linux
文章档案
2006年6月 (8)
搜索
最新评论
1. re: 利用webrcp部署富客户端
不知道webrcp做好*.zip放在哪里,请作者赐教。
--zuzhilong
rmi和httpInvoker
对于富客户端来说,和服务器端的通讯有很多种方式,不过我一般用的就是rmi或者httpInvoker。
spring为多种远程调用都提供了包装:
一。对于RMI来说
1、服务器端:
<
bean
class
="org.springframework.remoting.rmi.RmiServiceExporter"
>
<
property
name
="serviceName"
><
value
>
ExampleService
</
value
></
property
>
<
property
name
="service"
><
ref
bean
="exampleManager"
/></
property
>
<
property
name
="serviceInterface"
><
value
>
com.example.server.service.manager.base.IExampleManager
</
value
></
property
>
<
property
name
="registryPort"
><
value
>
777
</
value
></
property
>
</
bean
>
这段spring的配置文件就定义了服务器端的一个bean,可以暴露给客户端通过RMI方式来访问了。
examleMaanger这个bean在实现时,完全不需要知道它自己有一天还会被通过rmi方式被远程访问。
2、客户端:
<
bean
id
="cityService"
class
="org.springframework.remoting.rmi.RmiProxyFactoryBean"
>
<
property
name
="serviceUrl"
><
value
>
rmi://localhost:777/CityService
</
value
></
property
>
<
property
name
="serviceInterface"
><
value
>
com.example.server.service.manager.base.IExampleManager
</
value
></
property
>
<
property
name
="lookupStubOnStartup"
><
value
>
true
</
value
></
property
>
<
property
name
="cacheStub"
><
value
>
true
</
value
></
property
>
</
bean
>
这段spring的配置文件定义了客户端的一个bean,这样就可在客户端使用exampleManager了,就如同在本地使用一样,完全没有什么不同。
二。对于httpInvoker来说,其配置比rmi方式要麻烦一些,而且据说其效率也要比rmi方式差,不过这一点我到没有亲身证实过,只是听说而已。但是httpInvoker有一个优点却足以抵消其所有的缺点,那就是它是通过web的端口来访问的。这样,只要能够浏览页面,就能够进行远程调用,避免了rmi方式有时无法通过防火墙的问题。
1、服务器端:
httpInvoker需要web容器的支持,因此需要将服务器端程序部署到web容器内。
在web.xml文件中
<
listener
>
<
listener-class
>
org.springframework.web.context.ContextLoaderListener
</
listener-class
>
</
listener
>
<
servlet
>
<
servlet-name
>
remote
</
servlet-name
>
<
servlet-class
>
org.springframework.web.servlet.DispatcherServlet
</
servlet-class
>
<
load-on-startup
>
1
</
load-on-startup
>
</
servlet
>
<
servlet-mapping
>
<
servlet-name
>
remote
</
servlet-name
>
<
url-pattern
>
/remote/*
</
url-pattern
>
</
servlet-mapping
>
注意第一行定义的listener一定要有,否则下面提到的remote-servlet.xml中要引用的bean就会无法找到。
我们定义了一个servlet,名字叫remote,因此在WEB-INF目录下我们建一个名字为remote-servlet.xml的文件,内容为
<?
xml version="1.0" encoding="UTF-8"
?>
<!
DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN"
"http://www.springframework.org/dtd/spring-beans.dtd"
>
<
beans
>
<
bean
name
="/exampleService"
class
="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"
>
<
property
name
="service"
><
ref
bean
="exampleManager"
/></
property
>
<
property
name
="serviceInterface"
>
<
value
>
com.example.server.service.manager.IExampleManager
</
value
>
</
property
>
</
bean
>
</
beans
>
这样服务器端的配置就完成了。exampleManager这个bean被暴露给了客户端
2、客户端:
<
bean
id
="exampleService"
class
="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean"
>
<
property
name
="serviceUrl"
>
<
value
>
http://localhost:80/remote/exampleService
</
value
>
</
property
>
<
property
name
="serviceInterface"
>
<
value
>
com.example.server.service.manager.IExampleManager
</
value
>
</
property
>
</
bean
>
OK,这样客户端的配置就完成了。
posted on 2006-06-02 15:07
Rendezvous with Rama
阅读(906)
评论(0)
编辑
收藏
所属分类:
Java
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
Chat2DB
C++博客
博问
管理
相关文章:
rmi和httpInvoker
在eclipse中不需要myeclipse等插件即可启动基于webwork的web应用的方法
在项目中使用IronTrackSQL进行sql性能监测