一 服務端
1.創建rmi接口文件及實現類。
2.在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>
<!-- 經過Spring HttpInvoker機制暴露遠程訪問服務 -->
<bean id="rmiService" class="com.xxx.xxx.impl.RemoteSyncInfoImpl" />
<bean name="/remoteService" class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
<property name="service" ref="rmiService" />
<property name="serviceInterface" value="com.xxx.xxx.IRemoteSyncInfo" />
</bean>
</beans>
3.在WEB-INF/web.xml中加入如下內容:
<!-- 配置DispatcherServlet -->
<servlet>
<servlet-name>remote</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<!-- 配置該Servlet隨應用啓動時候啓動 -->
<load-on-startup>2</load-on-startup>
</servlet>
<!-- 配置DispatcherServlet映射的url -->
<servlet-mapping>
<servlet-name>remote</servlet-name>
<url-pattern>/publish/*</url-pattern>
</servlet-mapping>
二 客戶端
1.定義接口(不需實現類),若是須要傳遞對象,則需在服務端和客戶端都要有對象類而且實現序列化接口。
2.在spring的xml文件加入如下內容:
<bean id="syncInfoService"
class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
<property name="serviceUrl">
<value>http://localhost:8080/orgcode/publish/remoteService</value>
</property>
<property name="serviceInterface">
<value>com.xxx.xxx.IRemoteSyncInfo</value>
</property>
</bean>web