`

spring和CXF集成来实现webservices

 
阅读更多

最近在负责一个大系统的实施,经过需求分析之后,将系统分为5个子系统,我们采用SOA架构,分模块开发。项目组中最大的一个争议就是,子系统之间的通讯问题,大家提出了两种方案:一、如果5个子系统最后发布为5个war包,那么相互之间就不能直接调用,而是需要通过webservices等通讯方式,那会增加一些开发工作量;二、如果5个子系统合并在一个大工程中,下面放所有的模块,那子系统间的访问很简单,但是日常的开发管理会存在比较大的风险。

 

 

 

从管理的角度来看,我是比较偏向第一种方案,因为这样结构更清晰更简单,开发人员之间的相互影响也较小,还有一个好处就是,可以将不同的子系统发布在不同的应用服务器上,避免了由于某一个子系统崩溃导致整个系统的崩溃。于是,我对webservices的开发技术进行了研究,发现用spring和CXF集成来发布webservice和调用webservice都非常的简单,也加大了我选择第一种方案的决心。下面就简单介绍一个spring和CXF集成的示例。

 

一、 准备工作。

        1、下载apache-cxf的应用包,地址:http://cxf.apache.org/download.html,我选择的是2.4.1版本。



二、发布webservices

1新建webproject ,并加入apache-cxf-2.4.1\lib所有包,编写要发布的web service接口和实现.这一步,与前面一样。 

1)创建一个接口类,并加上webservice标记

import javax.jws.WebService;
@WebService 
public interface HelloWorld {  
     public String sayHello(String text);  
}

 


2)创建上面这个接口的实现类

import javax.jws.WebService;  
@WebService(endpointInterface="test.HelloWorld")  
public class HelloWorldImpl implements HelloWorld {  
      public String sayHello(String text) {  
                  return "Hello" + text ;  
    }  
  } 

 

@WebService 注解表示是要发布的web服务,endpointInterface的值是该服务类对应的接口。

2.spring-cxf.xml配置发布的web service 

<?xmlversion="1.0"encoding="UTF-8"?>
<beansxmlns="http://www.springframework.org/schema/beans"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xmlns:jaxws="http://cxf.apache.org/jaxws"
   xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd" >
   <importresource="classpath:META-INF/cxf/cxf.xml"/> 
   <importresource="classpath:META-INF/cxf/cxf-extension-soap.xml"/> 
   <importresource="classpath:META-INF/cxf/cxf-servlet.xml"/> 
 
   <beanid="hello"class="test.HelloWorldImpl"/> 
   <jaxws:endpointid="helloWorld"implementor="#hello" 
       address="/HelloWorld"/> 
  </beans >

 

注意:<jaxws:endpointid="helloWorld"implementor="#hello"   address="/HelloWorld"/> 

id:指在spring配置的beanID.

Implementor:指明具体的实现类.

Address:指明这个web service的相对地址,

 

3. 配置web.xml文件:

<?xmlversion="1.0"encoding="UTF-8"?> 
<web-appversion="2.4"xmlns="http://java.sun.com/xml/ns/j2ee" 
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
   xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee   
    http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" >  
   <context-param >  
       <param-name > contextConfigLocation</param-name >  

                   <!--spring配置文件放在WEB-INF目录下-->
       <param-value > /WEB-INF/spring-cxf.xml</param-value >  
   </context-param >  
   <listener >  
       <listener-class >  
         org.springframework.web.context.ContextLoaderListener 
       </listener-class >  
   </listener >  

         <servlet >  
       <servlet-name > CXFServlet</servlet-name >  
       <servlet-class >  
            org.apache.cxf.transport.servlet.CXFServlet  
       </servlet-class >  
       <load-on-startup > 1</load-on-startup >  
   </servlet >  
   <servlet-mapping >  
       <servlet-name > CXFServlet</servlet-name >  
       <url-pattern > /*</url-pattern >  
   </servlet-mapping >  
</web-app >  

 

4.部署到tomcat服务器,输入:http://localhost:8080/<web-app-name>/HelloWorld?wsdl,将显示这个web servicewsdl.

注意:如果web.xml配置<servlet-name > CXFServlet</servlet-name >  

       <url-pattern > /ws/*</url-pattern >  

则访问地址为:http://localhost:8080/<web-app-name>/ws/HelloWorld?wsdl 

到此webservices就发布成功了。

 

 

三、创建一个客户端来调用webservices

 

1、同样新建java project ,并加入apache-cxf-

2.0.7

\lib所有包,添加到Build Path

 

2、将webservice的接口类导出成jar包,也添加到Build Path,主要目的是客户端要用到服务端的HelloWorld这个类。如果不想导入这个jar包也可以,只要在客户端创建一个一摸一样的接口类:HelloWorld,特别要注意以下两点:

 

    1)接口前面要添加@Webservice的标记,不然会抛出一个 javax.xml.ws.WebServiceException: Could not find wsdl:binding operation info for web method sayHelloWorld.

 

    2)包路径也要一样,不然会抛出一个ClassCastException: $Proxy29 cannot be cast to...

 

3、配置spring-client.xml

<beansxmlns="http://www.springframework.org/schema/beans"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xmlns:jaxws="http://cxf.apache.org/jaxws"
   xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://cxf.apache.org/jaxws http://cxf.apache.org/schema/jaxws.xsd" >
      <!-- 这个class的包路径和类名和服务端提供web服务的接口一致-->
   <beanid="client"class="test.HelloWorld"
     factory-bean="clientFactory"factory-method="create"/>
   
   <beanid="clientFactory"class="org.apache.cxf.jaxws.JaxWsProxyFactoryBean" > 

     <!-- 这个class的包路径和类名和服务端提供web服务的接口一致-->
     <propertyname="serviceClass"value="test.HelloWorld"/>

     <!-- 这个address一定要注意,正确的-->
     <propertyname="address"value="http://localhost:8080/<web-app-name>/HelloWorld"/>
    </bean >      
</beans >

 

4.测试:

importorg.springframework.context.ApplicationContext;
importorg.springframework.context.support.ClassPathXmlApplicationContext;
 
importtest.HelloWorld;
 
public class Test {  
     
   public static void main(String[] args) {  
 
        ApplicationContext ctx =newClassPathXmlApplicationContext(  
               "spring-client.xml");  
        HelloWorld client = (HelloWorld) ctx.getBean("client");  
        String result = client.sayHello("Glen!");  
        System.out.println(result);  
    }  
} 

 

结果输出“Hello,Glen!”,测试通过,至此一个webservice的调用也成功了。

分享到:
评论

相关推荐

    Spring集成Cxf调用WebServices

    总之,Spring集成CXF调用Web Services是一个强大的组合,它提供了灵活的配置方式和强大的功能,使开发者能够更高效地构建和维护Web服务应用。通过理解并实践上述知识点,开发者可以更好地驾驭这一技术栈。

    Spring集成Cxf暴露WebServices示例

    本示例将探讨如何通过Spring集成Cxf来暴露Web服务,帮助开发者更好地理解和实现这一功能。 首先,我们需要了解Spring与Cxf的基本概念。Spring框架提供了一个全面的编程和配置模型,用于简化企业级Java应用程序的...

    CXF结合Spring开发WebServices示例工程

    "CXF结合Spring开发WebServices示例工程"包含了服务端和客户端的代码示例。服务端代码演示了如何定义服务接口,实现服务逻辑,并将其配置到Spring中。客户端代码展示了如何创建CXF客户端代理,并使用它来调用服务端...

    Spring集成CXF实例(包含WSS4J安全认证)

    这个服务器端项目包含了Spring-CXF-WSS4J集成的核心配置和实现。主要步骤包括: 1. **配置WSS4J安全策略**: 在Spring配置文件中,通过`&lt;jaxws:endpoint&gt;`元素设置WSS4J的安全策略。 2. **创建安全处理链**: 配置...

    web service cxf 2.7.5 与spring 3.0 集成

    总的来说,将CXF 2.7.5与Spring 3.0集成,可以充分利用两者的优势,构建高效、可维护的Web服务解决方案。通过灵活的配置和强大的测试支持,开发人员能够更专注于业务逻辑,而不是底层通信细节。

    cxf+spring实现webservice

    4. **服务注册与发布**:使用Spring配置的`JAXWSServerFactoryBean`或`JAXRSServerFactoryBean`,将服务接口和实现绑定到特定的URL上,发布Web服务。 5. **客户端调用**:在需要消费Web服务的项目中,可以使用...

    spring+cxf_demo

    CXF集成了WSDL(Web Services Description Language)第一和第二版,可以自动生成服务端和客户端代码,简化了Web服务的开发流程。同时,CXF也支持数据绑定技术,如JAXB(Java Architecture for XML Binding),使得...

    Spring+CXF实现WebService

    本教程将详细介绍如何利用Spring和CXF来实现Web服务,包括服务端和客户端的开发。 首先,让我们深入了解Spring框架。Spring以其依赖注入(Dependency Injection,DI)和面向切面编程(Aspect-Oriented Programming...

    ssh+cxf webservices完整版

    【SSH+CXF Webservices 完整版】项目是一个基于Spring、Struts、Hibernate和CXF的Web服务实现。这个项目提供了完整的源码和必要的库文件(jar包),旨在帮助开发者快速理解和部署一个使用CXF进行Web服务开发的示例。...

    spring-cxf WebService

    【Spring-CXF WebService】是基于Spring框架和Apache CXF实现的一个Web服务示例,它展示了如何在Spring环境中集成CXF来创建、部署和消费Web服务。Spring-CXF结合了Spring的强大功能和CXF的优秀Web服务支持,使得开发...

    Apache cxf 与spring集成

    在与Spring框架集成时,Apache CXF能够利用Spring的强大功能来管理服务的生命周期和依赖注入,使得Web服务的开发更加便捷和灵活。集成过程涉及以下几个关键步骤: 1. **环境准备**:确保使用合适的开发环境,例如...

    cxf spring maven 实例

    4. **创建Web服务**:使用CXF和Spring,开发者可以通过简单的注解或XML配置文件来声明服务接口和服务实现。CXF会自动生成WSDL文件,客户端可以根据这个文件生成代理类来调用服务。 5. **Spring整合CXF**:Spring...

    Spring整合CXF demo

    通过这个Demo,我们可以学习到如何在Spring环境下优雅地集成和使用CXF,理解Web服务的基本原理,以及Spring如何帮助我们管理Web服务的生命周期。这对于开发基于Java的分布式系统和企业级应用来说,是非常重要的实践...

    spring 集成 cxf 简单例子

    总结来说,Spring集成CXF的例子展示了如何在Spring环境下快速搭建一个Web服务,通过定义服务接口、实现接口、配置Spring和Web容器,最后通过测试验证服务是否正常运行。这个过程涉及到了Spring的bean管理和CXF的Web...

    Springboot整合CXF发布Web service和客户端调用(用户和密码验证)

    总结起来,Spring Boot整合CXF发布Web服务和实现用户密码验证的客户端调用主要包括以下步骤: 1. 引入CXF和Spring Security依赖。 2. 定义并实现Web服务接口。 3. 配置Spring Security以实现认证。 4. 使用CXF生成...

    spring集成cxf(webservice)

    - **工具支持**:CXF提供了一系列工具,支持JavaBean、Web服务与WSDL之间的转换,并且与Maven、Ant和Spring等工具无缝集成。 - **RESTful服务支持**:除了传统的SOAP服务外,CXF还支持RESTful服务,并且内置了JAX-RS...

    idea + spring4.3.7.RELEASE+cxf3.1.0整合+客户端调用

    在"springmvc_cxf.rar"文件中,可能包含了已配置好的Spring MVC项目,包括Spring和CXF的配置文件、服务接口和实现、以及Maven的配置信息。"cxfclinet.rar"则可能包含了客户端的相关代码,如生成的代理类和调用示例。...

    Spring MVC、CXF、Web Service

    CXF集成了多种Web服务标准,如SOAP、RESTful API、WS-* 规范等,使得开发者能够灵活地选择适合的通信方式。CXF支持JAX-WS和JAX-RS,允许开发者以Java注解的方式轻松地创建服务接口和服务实现。此外,CXF还提供了一套...

    Apache CXF之结合Spring配置发布WebServices(Aegis数据绑定)

    在本话题中,我们将关注Apache CXF与Spring框架的集成,以及如何使用Aegis数据绑定来发布Web Services。 Spring是一个流行的Java企业级应用框架,它提供了丰富的功能,包括依赖注入、事务管理、数据访问等。Apache ...

    maven - spring4.1.6和cxf3.0.8 WebService整合代码

    这个示例中的具体应用是通过一个名为"HelloWorld"的服务来展示的,其Web Service地址为`http://localhost:8080/springCxf/HelloWorld?wsdl`。让我们逐步了解这个过程。 **1. Spring框架介绍** Spring是一个广泛使用...

Global site tag (gtag.js) - Google Analytics