`
tom_seed
  • 浏览: 321606 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

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

 
阅读更多

hessian与spring结合使用

依旧使用前面用到的两个项目servicepro与clientpro,导入相应的jar包,之前已经导入了hessian,此处只导入spring用到的jar包与aopalliance.jar,注:导入工程的jar有些可能不需要。

一、配置服务器端(servicepro工程)

1.在web.xml中需要进行如下配置

<servlet>
	<servlet-name>remoting</servlet-name>
	<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param><!--指定spring加载的文件具体位置,可以任意定义,默认为WEB-INF下,默认名称为${servlet-name}-servlet.xml (即remoting-servlet.xml)-->
        	<param-name>contextConfigLocation</param-name>
        	<param-value>classpath:remote-service.xml</param-value>
    	</init-param>
        <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
	<servlet-name>remoting</servlet-name>
	<url-pattern>/service/*</url-pattern>
</servlet-mapping>

  Spring的DispatcherServlet可以将请求转发到Hessian服务

 

2.创建相应的接口与接口实现类

a.接口HessianHelloWorld

package com.remote;

public interface HessianHelloWorld {
	String target();
}

 b.接口实现类

package com.remote.impl;

import com.caucho.hessian.server.HessianServlet;
import com.remote.HessianHelloWorld;

public class HessianHelloWorldImpl extends HessianServlet implements
		HessianHelloWorld {
	private static final long serialVersionUID = -489831024851039867L;

	@Override
	public String target() {
		return "target:one piece";
	}

}

 

3.在工程的源代码根目录下面创建remote-service.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:context="http://www.springframework.org/schema/context"
	xmlns:mvc="http://www.springframework.org/schema/mvc"
	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/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd"
	default-lazy-init="true">

	<!-- 声明具体实现的累 -->
	<bean id="helloWorld" class="com.remote.impl.HessianHelloWorldImpl" />
	<!-- 使用HessianServiceExporter 将普通bean导出成Hessian服务-->
	<bean name="/remote"<!--客户端访问时的路径-->
		class="org.springframework.remoting.caucho.HessianServiceExporter">
		<property name="service" ref="helloWorld" /><!-- 需要导出的目标bean--> 
		<property name="serviceInterface" value="com.remote.HessianHelloWorld" /><!-- Hessian服务的接口--> 
	</bean> 

</beans>

 

 通过Tomcat启动servicepro工程

项目整体结构如附件中图片:service-2.jpg

 

二、配置客户端(clientpro工程)

此处用到的HessianHelloWorld通过服务器端(servicepro工程)创建并已jar文件的形式导出,最后添加到客户端(clientpro工程)中

1.在spring文件中配置远程bean

a.在工程的源代码根目录下面创建remote-bean.xml文件

b.添加相应的配置,沿用之前的接口HessianHelloWorld

<?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:context="http://www.springframework.org/schema/context"
	xmlns:mvc="http://www.springframework.org/schema/mvc"
	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/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd"
	default-lazy-init="true">
	<bean id="myService" class="org.springframework.remoting.caucho.HessianProxyFactoryBean">
		<property name="serviceUrl">
			<value>http://localhost:8080/servicepro/service/remote</value>
		</property>
		<property name="serviceInterface">
			<value>com.remote.HessianHelloWorld</value>
		</property>
	</bean>
</beans>

 

2.创建测试用例ClientBySpringTest

package com.client.remote.test;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.remote.HessianHelloWorld;

public class ClientBySpringTest {
	public static void main(String[] args) {
		ApplicationContext context = new ClassPathXmlApplicationContext("remote-bean.xml"); 
		HessianHelloWorld hello = (HessianHelloWorld)context.getBean("myService");
        System.out.println(hello.target());
	}
}

通过上下文类加载配置文件remote-bean.xml中的内容,获取的bean的名称“myService”是在配置文件中定义的bean的id

项目整体结构如附件中图片:clientpro-2.jpg

 

当服务器端通过spring配置,客户端若不需要使用spring时,同样可以使用纯hessian,也能够正常访问。反过来也是一样的

 

其他参考资料

http://www.iteye.com/topic/14887

http://www.blogjava.net/freeman1984/archive/2010/01/27/310999.html

 

  • 描述: service-2.jpg
  • 大小: 92.5 KB
  • 描述: clientpro-2.jpg
  • 大小: 96.3 KB
分享到:
评论

相关推荐

    hessian-lite-3.2.1-fixed-2.jar

    com.alibaba:hessian-lite:jar:3.2.1-fixed-2 hessian-lite hessian-lite-3.2.1-fixed-2.jar

    hessian-4.0.63-API文档-中英对照版.zip

    赠送jar包:hessian-4.0.63.jar; 赠送原API文档:hessian-4.0.63-javadoc.jar; 赠送源代码:hessian-4.0.63-sources.jar; 赠送Maven依赖信息文件:hessian-4.0.63.pom; 包含翻译后的API文档:hessian-4.0.63-...

    hessian-4.0.63-API文档-中文版.zip

    赠送jar包:hessian-4.0.63.jar; 赠送原API文档:hessian-4.0.63-javadoc.jar; 赠送源代码:hessian-4.0.63-sources.jar; 赠送Maven依赖信息文件:hessian-4.0.63.pom; 包含翻译后的API文档:hessian-4.0.63-...

    hessian-3.3.6-API文档-中英对照版.zip

    赠送jar包:hessian-3.3.6.jar 赠送原API文档:hessian-3.3.6-javadoc.jar 赠送源代码:hessian-3.3.6-sources.jar 包含翻译后的API文档:hessian-3.3.6-javadoc-API文档-中文(简体)-英语-对照版.zip 对应Maven...

    hessian-3.3.6-API文档-中文版.zip

    赠送jar包:hessian-3.3.6.jar; 赠送原API文档:hessian-3.3.6-javadoc.jar; 赠送源代码:hessian-3.3.6-sources.jar; 赠送Maven依赖信息文件:hessian-3.3.6.pom; 包含翻译后的API文档:hessian-3.3.6-javadoc-...

    hessian-4.0.51-src

    本文将基于Hessian 4.0.51的源码包,探讨其核心设计理念、实现机制以及如何在JDK 1.7环境下,通过Maven构建并使用这一库。 一、Hessian的核心理念 Hessian的核心目标是提供一种简洁、高效的远程调用方式,使得Java...

    hessian-3.0.20-src.jar

    hessian是一个轻量级的Java Remoting方案

    Hessian与Spring整合需要jar包

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

    Hessian的Spring配置

    通过上述配置,我们可以实现Spring中基于Hessian的RPC通信,使得服务间的调用变得高效且简单。`HelloHessianService`和`HelloHessianClient`可能分别代表服务提供方和服务消费方的代码实现,它们是整个Hessian通信的...

    Hessian多个版本打包下载

    在使用这些Hessian版本时,开发者还需要关注如何正确地配置和集成到自己的项目中。这包括设置服务器端和客户端的Hessian服务,定义服务接口,处理序列化和反序列化的过程,以及调试可能出现的问题。在进行版本升级时...

    hessian-lite-3.2.1-fixed-2-sources.jar

    java运行依赖jar包

    hessian4.0.7结合spring2.5.6的bug

    在提供的文件`hessian-spring`中,可能包含了示例代码、配置文件或者是用来复现问题的测试环境。通过研究这些文件,开发者可以直接看到问题的现象,理解问题的上下文,并尝试各种解决方案,如更新Hessian到兼容的...

    Hessian RPC-RMI技术 整合Structs Spring Hibernate Ibatis

    本文主要讨论的是如何将Hessian RPC与RMI技术整合到Structs、Spring、Hibernate和Ibatis这四个关键的Java开发框架中,以构建一个高效、灵活的分布式应用程序。 1. **Hessian配置说明**: Hessian的配置通常涉及...

    Hessian 使用小结

    当Hessian与Spring框架结合时,步骤稍有不同: 1. **依赖和接口**:同样需要引入Hessian库,并定义服务接口。但此时,接口的实现可以是普通的Plain Old Java Objects (POJOs)。 2. **Spring配置**:在服务端的...

    hessian与spring整合的jar包

    当我们将Hessian与Spring进行整合时,主要目标是利用Spring的依赖注入(Dependency Injection, DI)和组件管理能力来简化Hessian服务的创建和管理。以下是一些关键知识点: 1. **Spring核心模块**(spring-core-...

    轻量级远程服务调用Hessian的入门实例和与Spring整合的实例.zip

    这个压缩包文件包含了关于Hessian的入门实例以及如何将其与Spring框架整合的教程。 一、Hessian入门实例 Hessian的入门实例主要展示了如何创建一个简单的服务提供者和消费者。首先,我们需要定义一个服务接口,例如...

    Hessian和Spring集成示例

    下面将详细讲解Hessian与Spring集成的关键知识点。 首先,理解Hessian是什么至关重要。Hessian是一个二进制的Web服务协议,由Caucho公司开发。它提供了轻量级、高效的RPC(Remote Procedure Call)框架,使得Java...

Global site tag (gtag.js) - Google Analytics