[webservices开发]XFire在SpringSide中的应用

2008-02-23 09:16:54来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

这一节,通过SpringSide来分析XFire的应用。

SpringSide开源项目是国内的开发人员所做的一个以Spring为核心的开源项目,目的是提供一个Pragmatic的企业应用开发基础和最佳实践展示。为使用Spring框架的开发者提供一个非Demo版的复杂、正式而体现最佳使用实践的参照系统。为JavaEEer必须面对的所有问题提供合理的、合乎Pragmatic原则的解决方案。采用Plugins形式组织,使开发者可快速定位所需的参考方案并做加法到自己的系统。

SpringSide中关于Web服务的配置是在

WEB-IBF/classes文件下的applicationContext-webservice.XML中配置的:

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springFramework.org/dtd/spring-beans.dtd">

<beans>

<import resource="classpath:org/codehaus/xfire/spring/xfire.xml"/>

<bean class="org.springframework.web.Servlet.handler.SimpleUrlHandlerMapping">

<property name="mappings">

<value>/BookService=bookService</value>

</property>

</bean>

<bean id="baseWebService" class="org.codehaus.xfire.spring.Remoting.XFireExporter" abstract="true">

<property name="serviceFactory" ref="xfire.serviceFactory"/>

<property name="xfire" ref="xfire"/>

</bean>

<bean id="bookService" parent="baseWebService">

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:[webservices开发]集成Spring

下一篇:部署MapViewer到Oracle Application Server上的步骤