码迷,mamicode.com
首页 > 编程语言 > 详细

Spring集成XFire的WebService实例

时间:2015-04-21 16:10:57      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:webservice   spring   xfire   

废话不说,直接来源码

Web.xml代码

<?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">
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
  <servlet>
		<servlet-name>XFireServlet</servlet-name>
		<servlet-class>org.codehaus.xfire.spring.XFireSpringServlet</servlet-class>
		<load-on-startup>0</load-on-startup>
	</servlet>
	<servlet-mapping>
		<servlet-name>XFireServlet</servlet-name>
		<url-pattern>/services/*</url-pattern>
	</servlet-mapping>

	<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>classpath:applicationContext.xml,classpath:org/codehaus/xfire/spring/xfire.xml</param-value>
	</context-param>
	<listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	</listener>
</web-app>


Spring配置文件:

<?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: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">
	<bean id="addressingHandler" class="org.codehaus.xfire.addressing.AddressingInHandler"/>
	<bean id="test" class="com.zxl.Test"/>
	
	<bean name="testSer" class="org.codehaus.xfire.spring.ServiceBean">
	     <property name="serviceBean" ref="test"/>
	     <property name="serviceClass" value="com.zxl.ITest"/>
	     <property name="inHandlers">
	      <list>
	        <ref bean="addressingHandler"/>
	      </list>
	    </property>
	</bean>
</beans>


 定义的接口:

package com.zxl;

public interface ITest {
	public String myTest(String param);
}


业务实现类以及测试调用

package com.zxl;

import java.net.MalformedURLException;
import java.net.URL;

import org.codehaus.xfire.client.Client;

public class Test implements ITest {

	public String myTest(String param) {
		// TODO Auto-generated method stub
		return "ni hao "+param;
	}
	public static void main(String args[]) throws MalformedURLException, Exception{
		System.out.println(System.nanoTime());
		String wsdl="http://192.168.0.85:8088/XFireTest/services/ITest?wsdl";
		Client client = new Client(new URL(wsdl));
		Object[] result = client.invoke("myTest",new Object[]{"zxl "});
		
	}
}




 

Spring集成XFire的WebService实例

标签:webservice   spring   xfire   

原文地址:http://blog.csdn.net/zxl333/article/details/45170691

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!