`
江金鸿
  • 浏览: 27819 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

spring hessian的使用

    博客分类:
  • java
 
阅读更多

先配置web.xml

<servlet>
     <servlet-name>hessian</servlet-name>
     <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
     <init-param>
      <param-name>contextConfigLocation</param-name>
      <param-value>/WEB-INF/classes/hessian-remote.xml</param-value>
     </init-param>
     <load-on-startup>2</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>hessian</servlet-name>
    <url-pattern>/hessian/*</url-pattern>
   </servlet-mapping>

2.写接口,写实现类

3hessian-remote.xml配置

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jee="http://www.springframework.org/schema/jee"
 xmlns:tx="http://www.springframework.org/schema/tx" xmlns:aop="http://www.springframework.org/schema/aop"
 xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p"
 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
 http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
 http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.0.xsd
 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"
    default-lazy-init="true">
 
 <bean id="hessianMemberService" class="com.dimeng.b2b.webservice.hessian.MemberServiceImpl">
        <property name="memberDAO" ref="memberDAO"></property>
        <property name="companyDAO" ref="companyDAO"></property>
        <property name="verifyCodeDAO" ref="verifyCodeDAO"></property>
        <property name="userService" ref="userService"></property>
    </bean>
 
 <bean name="/memberService" class="org.springframework.remoting.caucho.HessianServiceExporter">
  <property name="service" ref="hessianMemberService"/>
     <property name="serviceInterface">
         <value>com.dimeng.sip.service.MemberService</value>
     </property>
 </bean>
</beans>

4,客户端调用

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jee="http://www.springframework.org/schema/jee"
 xmlns:tx="http://www.springframework.org/schema/tx" xmlns:jdbc="http://www.springframework.org/schema/jdbc"
 xmlns:context="http://www.springframework.org/schema/context"
 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd"
 default-lazy-init="true">

 <bean id="userService"
  class="org.springframework.remoting.caucho.HessianProxyFactoryBean">
  <property name="overloadEnabled" value="true" />
  <property name="chunkedPost" value="false" />
  <property name="serviceUrl" value="${passport.server.url}/hessian/userService" />
  <property name="serviceInterface" value="com.dimeng.sip.service.UserService" />
 </bean>
 <bean id="accountService"
  class="org.springframework.remoting.caucho.HessianProxyFactoryBean">
  <property name="overloadEnabled" value="true" />
  <property name="chunkedPost" value="false" />
  <property name="serviceUrl" value="${account.server.url}/hessian/accountService" />
  <property name="serviceInterface" value="com.dimeng.sip.service.AccountService" />
 </bean>
 <bean id="memberService"
  class="org.springframework.remoting.caucho.HessianProxyFactoryBean">
  <property name="overloadEnabled" value="true" />
  <property name="chunkedPost" value="false" />
  <property name="serviceUrl" value="${b2b.server.url}/hessian/memberService" />
  <property name="serviceInterface" value="com.dimeng.sip.service.MemberService" />
 </bean>
</beans>

http://wenku.baidu.com/view/9d1f1d7e168884868762d60b.html 看下这个你有惊喜

分享到:
评论

相关推荐

    Hessian的Spring配置

    2. **配置Hessian服务**: 在Spring的配置文件中,使用`&lt;bean&gt;`标签定义HessianExporter,暴露服务接口。 ```xml &lt;bean id="helloHessianExporter" class="org.springframework.remoting.caucho.HessianExporter"&gt;...

    Spring集成Hessian案例

    在IT行业中,Spring框架是Java领域最常用的轻量级应用框架之一,而Hessian则是一种高效的RPC(远程过程调用)协议,它允许服务提供者和消费者之间进行二进制远程方法调用。本案例主要关注如何将Spring与Hessian进行...

    Hessian与Spring整合需要jar包

    1. **配置Spring**:在Spring的配置文件中定义Hessian服务的bean,通过`&lt;bean&gt;`标签声明服务接口和其实现类,使用`hessian-proxy-factory-bean`来创建Hessian服务的代理。 2. **暴露Hessian服务**:通过Spring的`...

    hessian与spring整合的jar包

    4. 在客户端,通过Spring的`HessianClientInterceptor`或者直接使用`HessianProxyFactory`来创建Hessian代理,调用远程服务。 5. 配置服务器端(如Tomcat)以部署Spring应用上下文和Hessian服务。 6. 运行并测试服务...

    Spring中集成Hessian的问题

    在Spring框架中集成Hessian是为了实现远程方法调用(Remote Method Invocation, RMI),这是一种轻量级的序列化协议,可以高效地传输Java对象。Hessian使得服务提供者和服务消费者之间能够通过网络进行快速的数据...

    spring 集成 hessian例子

    Hessian是一个轻量级的remoting onhttp工具,使用简单的方法提供了RMI的功能。 相比WebService,Hessian更简单、快捷。采用的是二进制RPC协议,因为采用的是二进制协议,所以它很适合于发送二进制数据。参考文档地址...

    spring aop hessian 基础demo 部署即可运行

    Spring AOP和Hessian是两个在Java开发中广泛使用的技术,尤其在分布式系统和服务治理中。下面将详细解释这两个概念以及它们如何结合使用。 **Spring AOP(面向切面编程)** Spring AOP是Spring框架的一个重要组成...

    Spring配置hessian远程服务

    使用eclipse maven工程搭建hessian远程服务demo 分服务端的整合和客户端 建议阅读相关博客http://blog.csdn.net/heisemuyangquan/article/details/79460528

    Spring + Hessian + Spring MVC(包括Server和Client).zip

    1.名称:Spring + Hessian + Spring MVC(包括Server和Client).zip 2.来源:自己实现 3.备注:项目有两个系统,包括Server端和Client端,项目已经跑通,可以实现。 4.注意:client中pom.xml里最后的一个jar包,需要...

    在 Spring Web Flow 项目中应用 Hessian 服务

    1. **配置Hessian服务**:在服务器端,我们需要创建一个实现了所需接口的业务服务类,并在Spring配置文件中声明它为Hessian服务,使用`&lt;bean&gt;`标签配合`hessian:service`标签进行配置。 2. **暴露Hessian服务**:...

    Hessian和Spring集成示例

    在IT行业中,Hessian和Spring的集成是服务端开发中常用的一种技术,它允许我们将Java对象作为远程服务进行调用,极大地提高了开发效率和系统的可扩展性。下面将详细讲解Hessian与Spring集成的关键知识点。 首先,...

    spring整合hessian进行远程通讯

    标题中的“spring整合hessian进行远程通讯”是指在Spring框架中使用Hessian库来实现远程过程调用(RPC)。这是一个常见的技术组合,用于构建分布式系统,使得应用组件之间可以跨网络进行高效通信。 Hessian是一种二...

    基于spring+hessian框架的webservice实例

    本实例重点探讨的是基于Spring框架和Hessian协议的Web Service实现,这是一种轻量级、高效的远程调用解决方案。 首先,我们要理解Spring框架。Spring是Java领域的一个核心框架,它提供了全面的编程和配置模型,用于...

    Hessian与spring整合

    6. **性能优化**:由于Hessian使用二进制编码,相比基于XML的SOAP协议,其传输效率更高。但为了进一步优化性能,我们还可以考虑使用HTTP压缩、连接池等技术。 7. **安全考虑**:在实际应用中,我们需要对Hessian...

    spring mvc hessian maven简单实例

    Spring MVC 是一个强大的Java Web应用程序开发框架,它简化了处理HTTP请求和响应的过程...通过Spring MVC处理HTTP请求,使用Hessian进行高效的远程方法调用,以及通过Maven管理项目依赖,使得开发过程更加便捷和高效。

    Hessian 使用小结

    4. **客户端调用**:客户端可以选择与Spring集成,通过Spring的`ApplicationContext`获取代理对象,或者直接使用Hessian工具生成代理。 **安全机制** Hessian提供了基于X.509证书的加密和签名机制,这包括`X509...

    使用hessian简单使用【续】- 与spring结合使用

    本篇文章将探讨如何在Spring框架中集成并使用Hessian,以便更好地理解和应用这一技术。 一、Hessian简介 Hessian是由Caucho公司开发的一种基于HTTP的二进制RPC(Remote Procedure Call)协议,它以简洁的二进制格式...

    hessian 基于spring的注解支持的maven工程(2016/07/05版)

    引入该工程,在接口上添加@hessianService注解,在client定义url,在client端的xml里面配置hessianClientBuilder,在server里面配置hessianServerBuilder,并实例化接口。在client端里面使用接口并注入即可。

Global site tag (gtag.js) - Google Analytics