- 浏览: 76747 次
- 性别:
- 来自: 北京
-
文章分类
最新评论
-
quanhy5:
这是session复制时session内东西不是可序列化而引起 ...
weblogic集群session保持的问题 -
NICOBEYOND:
不错,向楼主学习!
通常在Spring发布Hession,RMI等 -
完美冰蓝:
估计有戏!
使用jad及eclipse插件进行.class文件的反编译 -
heavilyarmed:
谢谢了 呵呵
oracle主键自增
通常在Spring发布Hession,RMI等,是非常方便的,
但是要发布SOAP类型的WebService则要依赖一个独立的Servlet容器(如Tomcat+Axis),
这种Webservice一般还有别的配置文件,比如web.xml,wsdd文件等等
。有时侯,你可能想一台机器上只部署一个Http Soap Service
,这种场合你可能不希望安装一个类似Tomcat的容器,
你更希望发布的时候就是一个服务程序,该程序启动则提供WebService.这篇文章描述一种解决方案。
开发环境:
Spring 1.2.6
XFire 1.0
Jetty 4.2.1
方案描述:我们可以通过XFire的编程接口来创建WebService并嵌入一个HttpServer,
从而来做到在一个独立应用程序中发布Http Service
1// Create an XFire Service
2ObjectServiceFactory serviceFactory = new ObjectServiceFactory();
3Service service = serviceFactory.create(Echo.class);
4service.setInvoker(new BeanInvoker(new EchoImpl()));
5// Register the service in the ServiceRegistry
6XFire xfire = XFireFactory.newInstance().getXFire();
7xfire.getServiceRegistry().register(service);
8// Start the HTTP server
9XFireHttpServer server = new XFireHttpServer();
10server.setPort(8191);
11server.start();
这样的话,如果发布多个WebSerice则要依次显式的创建 XFire Service,然后再一一注册,
这样显然是不够优雅的。
我们想要让开发者在Spring配置文件中指定要发布为WebService的POJOs,
然后载入Spring环境就自动发布为webservice,而不需要跟 XFire API打交道。
首先,我们想要一个BeanFacory,能把一个pojo装配成XFire Service
1 /**
2 *
3 */
4 package com.yovn.ws.xfire.example;
5
6 import org.codehaus.xfire.service.Service;
7 import org.codehaus.xfire.service.binding.BeanInvoker;
8 import org.codehaus.xfire.service.binding.ObjectServiceFactory;
9 import org.springframework.beans.factory.FactoryBean;
10
11 /**
12 * @author new
13 *
14 */
15 public class XFireServiceFactoryBean implements FactoryBean
16 {
17
18
19
20
21 private Class serviceClass;
22
23
24 private Object target;
25
26
27 private Service service;
28
29
30 private final ObjectServiceFactory sf=new ObjectServiceFactory();
31
32 /**
33 *
34 */
35 public XFireServiceFactoryBean()
36 {
37
38 }
39
40 /* (non-Javadoc)
41 * @see org.springframework.beans.factory.FactoryBean#getObject()
42 */
43 public Object getObject() throws Exception
44 {
45 if(service==null)
46 {
47 service=sf.create(serviceClass);
48 service.setInvoker(new BeanInvoker(target));
49 }
50 return service;
51 }
52
53 /* (non-Javadoc)
54 * @see org.springframework.beans.factory.FactoryBean#getObjectType()
55 */
56 public Class getObjectType()
57 {
58
59 return Service.class;
60 }
61
62 /* (non-Javadoc)
63 * @see org.springframework.beans.factory.FactoryBean#isSingleton()
64 */
65 public boolean isSingleton()
66 {
67 return true;
68 }
69
70 public void setServiceClass(Class serviceClass)
71 {
72 this.serviceClass = serviceClass;
73 }
74
75 public void setTarget(Object target)
76 {
77 this.target = target;
78 }
79
80 }
81
这样我们可以通过Spring来装配一个pojo,
下一步我们要在Spring容器载入时候注册XFire Service,
并启动一个嵌入的Http Server,我们可以借助Spring的ApplicationListener来实现
Ok,我们完成基础的代码,下面试着发布一个简单的WebServie1 /**
2 *
3 */
4 package com.yovn.ws.xfire.example;
5
6
7 import org.apache.commons.logging.Log;
8 import org.apache.commons.logging.LogFactory;
9 import org.codehaus.xfire.XFire;
10 import org.codehaus.xfire.XFireFactory;
11 import org.codehaus.xfire.server.http.XFireHttpServer;
12 import org.codehaus.xfire.service.Service;
13 import org.codehaus.xfire.service.ServiceRegistry;
14 import org.springframework.context.ApplicationContext;
15 import org.springframework.context.ApplicationEvent;
16 import org.springframework.context.ApplicationListener;
17 import org.springframework.context.event.ContextClosedEvent;
18 import org.springframework.context.event.ContextRefreshedEvent;
19
20 /**
21 * @author new
22 *
23 */
24 public class XFireServiceStarter implements ApplicationListener
25 {
26
27 private int port = 80;
28
29 private XFireHttpServer server;
30 private final Log logger=LogFactory.getLog(getClass().getName());
31
32 public void setPort(int port)
33 {
34 this.port = port;
35 }
36
37 public void onApplicationEvent(ApplicationEvent event)
38 {
39 try
40 {
41 if (event instanceof ContextRefreshedEvent)
42 {
43
44 if (server != null)
45 {
46
47 server.stop();
48 logger.info("xfire server stopped");
49
50 }
51 registerService((ApplicationContext)event.getSource());
52 server = new XFireHttpServer();
53 server.setPort(port);
54 server.start();
55 logger.info("xfire server started");
56
57 } else if (event instanceof ContextClosedEvent)
58 {
59 if(server!=null)
60 {
61 server.stop();
62 logger.info("xfire server stopped");
63 }
64
65 }
66
67 } catch (Exception e)
68 {
69 logger.error("process event "+event+" error",e);
70 }
71
72 }
73
74 private void registerService(ApplicationContext context)
75 {
76 XFire xfire=XFireFactory.newInstance().getXFire();
77 ServiceRegistry registry=xfire.getServiceRegistry();
78 String names[]=context.getBeanNamesForType(Service.class);
79
80 for(int i=0;i<names.length;i++)
81 {
82 Service service=(Service)context.getBean(names[i]);
83 registry.register(service);
84 logger.info("register service:"+service.getName());
85 }
86
87 }
88
89 }
90
该接口的实现如下1 package com.yovn.ws.xfire.example;
2
3 public interface Add
4 {
5 int add(int a,int b);
6
7 }
1 package com.yovn.ws.xfire.example;
2
3 public class AddImpl implements Add
4 {
5
6 public int add(int a, int b)
7 {
8
9 return a+b;
10 }
11
12 }
2
3 public class AddImpl implements Add
4 {
5
6 public int add(int a, int b)
7 {
8
9 return a+b;
10 }
11
12 }
这是一个简单功能的POJO,下面我们在Spring中装配起来
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
3 <beans>
4 <bean id="addService" class="com.yovn.ws.xfire.example.XFireServiceFactoryBean">
5 <property name="serviceClass" value="com.yovn.ws.xfire.example.Add"/>
6 <property name="target" ref="adder"/>
7 </bean>
8
9 <bean id="adder" class="com.yovn.ws.xfire.example.AddImpl"/>
10 <bean id="xfireStarter" class="com.yovn.ws.xfire.example.XFireServiceStarter">
11 <property name="port" value="80"/>
12 </bean>
13 </beans>
2 <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
3 <beans>
4 <bean id="addService" class="com.yovn.ws.xfire.example.XFireServiceFactoryBean">
5 <property name="serviceClass" value="com.yovn.ws.xfire.example.Add"/>
6 <property name="target" ref="adder"/>
7 </bean>
8
9 <bean id="adder" class="com.yovn.ws.xfire.example.AddImpl"/>
10 <bean id="xfireStarter" class="com.yovn.ws.xfire.example.XFireServiceStarter">
11 <property name="port" value="80"/>
12 </bean>
13 </beans>
好了,我们完成了,只要载入这个xml初始化一个Spring ApplicationContext,一个名叫Add的webservice就发布了。你可以通过访问http://localhost/Add?wsdl来获得webservice的详细描述!
发表评论
-
为Weblogic9.2安装和配置Apache HTTP 服务器插件
2007-07-31 09:32 5817下面内容来自Installing and Configurin ... -
配置WebLogic Server集群
2007-06-20 08:21 1086预备知识 什么是Domain和Server Domain ... -
Linux下配置WebLogic Server集群
2007-06-20 09:08 1328本文讲述如何在WebLogic Server 8.1上配置集群 ... -
weblogic集群session保持的问题
2007-06-25 02:48 5169这次考试院weblogic集群一直被session保持的问题所 ... -
WebLogic如何设置session超时时间
2007-06-25 02:48 2428WebLogic如何设置session超时时间 1 web. ... -
基于Weblogic Server实现EOS负载均衡的考虑
2007-06-25 02:51 1497EOS本身不提供负载均衡、流量控制、过负载控制的处理,主要依赖 ... -
EOS开发部署资料
2007-06-25 03:04 16041.关于EOS的primary key EOS的primar ... -
weblogic之SESSION复制
2007-06-25 03:05 3201在weblogic.xml中增加如下配置: <sessi ... -
Java - Webservice调用方式:axis,soap详解
2007-06-28 03:43 7757调用webservice,可以首先根据wsdl文件生成客户端, ... -
soap webservice axis
2007-06-28 03:45 1371本文介绍使用AXIS作为开发环境来体会Web服务的开发过程。& ... -
只需要3步把您的java程序转换为webservice
2007-06-28 04:34 1551一、Axis安装 1、环境 J2SE SDK 1.3 or 1 ... -
webwork与spring集成的三种方法
2007-05-31 09:21 10591.External-Ref 这种方法看起来比较烦琐,(这里 ... -
Spring与Hibernate的整合与解耦
2007-06-01 06:07 984Hibernate与Spring整合后,就可以使用IoC及AO ... -
Spring ORM implementation for Castor (1)
2007-06-01 08:03 979Data access with the Spring fra ... -
Spring ORM implementation for Castor (2)
2007-06-01 08:04 897Declarative Transaction Demarca ... -
java文章网址收集
2007-06-06 01:04 9691.TheServerside.com 依然是地位无可动 ... -
J2EE大型网站架构设计一点总结
2007-06-06 08:35 3497程序开发是一方面,系统架构设计(硬件+网络+软件)是另一方面。 ... -
使用Hibernate进行大数据量的性能测试总结
2007-06-07 07:37 21651) 在处理大数据量时,会有大量的数据缓冲保存在Session ... -
hibernate下数据批量处理解决方案
2007-06-07 07:37 972很多人都对Java在批量数据的处理方面是否是其合适的场所持有怀 ... -
CORBA介绍
2007-06-07 07:51 1827CORBA(Common Object Request Br ...
相关推荐
在Spring中配置Hessian服务,我们可以利用Spring的自动装配能力,简化服务的发布和消费过程。 要实现Spring4与Hessian4的结合,你需要完成以下步骤: 1. **配置服务提供方**: - 首先,创建一个服务接口和其实现...
Spring支持多种服务暴露方式,包括HTTP、RMI、JMS等,而Hessian就是其中一种。 Hessian与Spring的集成主要涉及以下几个步骤: 1. **添加依赖**:在项目中引入Hessian的库,这通常通过Maven或Gradle的依赖管理来...
在IT行业中,Hessian是一种高效的远程方法调用(Remote Method Invocation, RMI)协议,它由Caucho Technology开发。Hessian提供了一种二进制的序列化格式,使得网络通信更加高效,减少了数据传输量。它支持Java、...
Hessian是一个轻量级的remoting on http工具,使用简单的方法提供了RMI(Remote Method Invocation,远程方法调用)的功能。采用的是二进制RPC(Remote Procedure Call Protocol,远程过程调用协议)协议,因为采用...
RMI/Spring RMI Hession 传统RPC技术在大型分布式架构下面临的问题 分布式架构下的RPC解决方案 Zookeeper 分布式系统的基石 从0开始搭建3个节点额度zookeeper集群 深入分析Zookeeper在disconf配置中心的应用 ...
Java Dubbo 是一个分布式、高性能、透明化的 RPC 服务框架,提供服务自动注册、自动发现等高效服务治理方案,可以和 Spring 框架无缝集成。下面是 Dubbo 面试中常见的知识点: 一、Dubbo 支持哪些协议,每种协议的...
hession file HTTPS 负载均衡 容器 JBOSS tomcat resin jetty 容灾 日志框架 开源框架 slf4j 框架实现 log4j logback commong logging jdk logger 测试框架 测试框架 junit easymock testng ...