mvn 结构下spring+axis2开发webservice服务器端、客户端

最近接触一个项目需要用到mvn结构中搭建处理axis2的webservice服务。

搭建完成的目录如下:

 

其中web.xml中的配置如下:

 





	
	
		
			org.springframework.web.context.ContextLoaderListener
		
	
	Archetype Created Web Application
	
		contextConfigLocation
		classpath:applicationContext.xml
	
	
		AxisServlet

		

			org.apache.axis2.transport.http.AxisServlet

		

		1

	

	

		AxisServlet

		/services/*

	


 

其中org.springframework.web.context.ContextLoaderListener 配置spring的监听器

AxisServletorg.apache.axis2.transport.http.AxisServlet1

配置的是axis的webservice提供类

在WEB-INF下新建services目录

 

services.xml的配置




	

		Test WebService

		

			com.moretrust.mtbp.webservice.MtbpSynWebService

		
		

			org.apache.axis2.extensions.spring.receivers.SpringServletContextObjectSupplier

		

		mtbpSynWebService

		
                
                

		

	




spring的配置文件



         
	


具体jar包见以下链接

http://download.csdn.net/detail/liuzhigang1237/4504904

你可能感兴趣的:(技术类)