CXF+Spring 实现webService

导入相关的jar文件;

https://img-my.csdn.net/uploads/201302/23/1361593027_7218.jpg


CXFSpring服务器端:

1.(定义接口)新建一个服务接口IHelloWorld.java,该接口是面向客户端,暴露服务:
Java代码   收藏代码
  1. package cn.com.service;  
  2.   
  3. import javax.jws.WebParam;  
  4. import javax.jws.WebService;  
  5.   
  6. @WebService  
  7. public interface IHelloWorld {  
  8.         //@WebParam(name="arg0")可有可无,为了增强可读性  
  9.     public String sayHello(@WebParam(name="arg0")String text);  
  10. }  

2.(实现接口)再新建该接口的实现类HelloWorldImpl.java:
Java代码   收藏代码
  1. package cn.com.service;  
  2. import javax.jws.WebService;  
  3.   
  4. @WebService(endpointInterface="cn.com.service.IHelloWorld")  
  5. public class HelloWorldImpl implements IHelloWorld {  
  6.     public String sayHello(String text) {     
  7.         return "Hello" + text ;  
  8.     }  
  9. }  

3.现在可以进行spring配置了,applicationContext.xml:
Xml代码   收藏代码
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <beans xmlns="http://www.springframework.org/schema/beans"  
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   
  4.     xmlns:p="http://www.springframework.org/schema/p"  
  5.     xmlns:jaxws="http://cxf.apache.org/jaxws"  
  6.     xmlns:cxf="http://cxf.apache.org/core"  
  7.     xsi:schemaLocation="http://www.springframework.org/schema/beans   
  8.     http://www.springframework.org/schema/beans/spring-beans-2.5.xsd   
  9.     http://cxf.apache.org/jaxws   
  10.     http://cxf.apache.org/schemas/jaxws.xsd">  
  11.       
  12.     <import resource="classpath:META-INF/cxf/cxf.xml" />  
  13.     <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />  
  14.     <import resource="classpath:META-INF/cxf/cxf-servlet.xml" />  
  15.       
  16.     <bean id="hello" class="cn.com.service.HelloWorldImpl"/>  
  17.       
  18.     <jaxws:endpoint id="helloWorld" implementor="#hello" address="/HelloWorld" />  
  19.   
  20. </beans>  

注意:1).<beans>元素里面的命名空间一定要正确,特别要增加xmlns:jaxws="http://cxf.apache.org/jaxws",http://cxf.apache.org/jaxws,http://cxf.apache.org/schemas/jaxws.xsd;

2).cxf.xml,cxf-extension-soap.xml,cxf-servlet.xml三个文件都在cxf-2.0.7.jar中把它们拷贝到META-INF/目录下。

4.配置web.xml:

Java代码   收藏代码
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"  
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  4.     xsi:schemaLocation="http://java.sun.com/xml/ns/javaee   
  5.     http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">  
  6.   
  7.     <context-param>  
  8.         <param-name>contextConfigLocation</param-name>  
  9.         <param-value>classpath:applicationContext.xml</param-value>  
  10.     </context-param>  
  11.   
  12.     <listener>  
  13.         <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>  
  14.     </listener>  
  15.   
  16.     <servlet>  
  17.         <servlet-name>CXFServlet</servlet-name>  
  18.         <display-name>CXF Servlet</display-name>  
  19.         <servlet-class>org.apache.cxf.transport.servlet.CXFServlet</servlet-class>  
  20.         <load-on-startup>1</load-on-startup>  
  21.     </servlet>  
  22.   
  23.     <servlet-mapping>  
  24.         <servlet-name>CXFServlet</servlet-name>  
  25.         <url-pattern>/*</url-pattern>  
  26.     </servlet-mapping>  
  27.   
  28.     <welcome-file-list>  
  29.         <welcome-file>index.jsp</welcome-file>  
  30.     </welcome-file-list>  
  31.       
  32. </web-app>  

到此服务器端基本上告一段落,可以将应用部署到tomcat,启动并访问http://localhost:8080/webws/HelloWorld?wsdl,如果能正确显示xml文件则说明部署成功。


CXFSpring客户端:

1.(定义接口)新建一个IHelloWorld接口,这是服务器端暴露的服务,代码和服务器端一致即可

2.新建客户程序,调用服务器端服务:

   1)在页面中注入客户端实例

        @Resource(name= "IHelloWorld")

         private IHelloWorld iHelloWorld;

    2)在方法中使用

        String result =  iHelloWorld.sayHello("你好!");  
        System.out.println(result); 

3.配置客户端的spring文件

   <jaxws:client

                           id="client"

                           serviceClass="pro.webws.client.IHelloWorld"

                           address="http://localhost:8080/webws/HelloWorld"

     />

注意:

address="http://localhost:8080/webws/HelloWorld" 中的/HelloWorld要与服务器端applicationContext.xml中的<jaxws:endpoint id="helloWorld" implementor="#hello" address="/HelloWorld" />的address属性对应。


现在服务器和客户端都已完成,启动tomcat,运行客户程序,将输出结果:

Hello你好!



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值