Spring通过Hessian进行远程处理示例

  1. 黑森州的Spring远程
  2. Spring黑森州的例子
借助于HessianServiceExporter和HessianProxyFactoryBean类, 我们可以实现hessian提供的远程服务。
黑森州的优势粗麻布在防火墙上运行良好。 Hessian可移植以与其他语言(例如PHP和.Net)集成。
黑森州远程处理的示例
【Spring通过Hessian进行远程处理示例】你需要创建以下文件来创建简单的粗麻布应用程序:
  1. Calculation.java
  2. CalculationImpl.java
  3. web.xml
  4. hessian-servlet.xml
  5. client-beans.xml
  6. Client.java
1) Calculation.java
它是包含一个方法多维数据集的简单接口。
package com.srcmini; public interface Calculation { int cube(int number); }

2) CalculationImpl.java
此类提供了Calculation接口的实现。
package com.srcmini; public class CalculationImpl implements Calculation{ public int cube(int number) { return number*number*number; } }

3)web.xml
在此xml文件中, 我们将DispatcherServlet定义为前端控制器。如果任何请求后跟.http扩展名, 它将被转发到DispatcherServlet。
< ?xml version="1.0" encoding="UTF-8"?> < web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> < servlet> < servlet-name> hessian< /servlet-name> < servlet-class> org.springframework.web.servlet.DispatcherServlet< /servlet-class> < load-on-startup> 1< /load-on-startup> < /servlet> < servlet-mapping> < servlet-name> hessian< /servlet-name> < url-pattern> *.http< /url-pattern> < /servlet-mapping> < /web-app>

4)hessian-servlet.xml
它必须在WEB-INF文件夹中创建。它的名称必须是servletname-servlet.xml。它为CalculationImpl和HessianServiceExporter定义了bean。
< ?xml version="1.0" encoding="UTF-8"?> < 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.xsd"> < bean id="calculationBean" class="com.srcmini.CalculationImpl"> < /bean> < bean name="/Calculation.http" class="org.springframework.remoting.caucho.HessianServiceExporter"> < property name="service" ref="calculationBean"> < /property> < property name="serviceInterface" value="http://www.srcmini.com/com.srcmini.Calculation"> < /property> < /bean> < /beans>

5)client-beans.xml
在此xml文件中, 我们为HessianProxyFactoryBean定义bean。你需要定义此类的两个属性。
  1. serviceUrl
  2. serviceInterface
< ?xml version="1.0" encoding="UTF-8"?> < 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.xsd"> < bean id="calculationBean" class="org.springframework.remoting.caucho.HessianProxyFactoryBean"> < property name="serviceUrl" value="http://localhost:8888/hessian/Calculation.http"> < /property> < property name="serviceInterface" value="http://www.srcmini.com/com.srcmini.Calculation"> < /property> < /bean> < /beans>

在此示例中, 我们的项目名称为hessian, 即用作serviceURL中的上下文根。
6) Client.java
此类获取Calculation的实例并调用cube方法。
package com.srcmini; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; public class Client { public static void main(String[] args){ ApplicationContext context = new ClassPathXmlApplicationContext("client-beans.xml"); Calculation calculation = (Calculation)context.getBean("calculationBean"); System.out.println(calculation.cube(5)); } }

如何运行这个例子
启动并部署项目, 这里我们假设服务器在8888端口号上运行。如果端口号不同, 请更改client-beans.xml中的serviceURL。
然后, 编译并运行Client.java文件。
下载此示例(使用Myeclipse IDE开发)

    推荐阅读