`
weir2009
  • 浏览: 265830 次
  • 性别: Icon_minigender_1
  • 来自: 惠州
社区版块
存档分类
最新评论

webservice cxf spring 集成知识

    博客分类:
  • cxf
阅读更多



 Soa(
面向服务的架构)

  Service1Service2Service3…——所有组件都是“即插即用”的。

  IBM提倡的soa架构:希望以“组装电脑”的方式来开发软件。

1.       各种提供服务的组件。(web service

2.       企业服务总线(enterprise service busESB

CXF可称得上是SOA架构

Cxf内置了一个jetty web服务器

 

使用cxf开发web service服务器端:

Cxf环境变量设置:

ClasspathF:\apache-cxf-2.1.2\lib

CXF_HOME = "CXF安装路径". 例如:F:\apache-cxf-2.1.2

PATH中添加%CXF_HOME%/bin

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

(1)       开发一个web service业务接口

该接口要用@webservice注解

 

 

package org.weir.cxf.ws;

import javax.jws.WebService;

@WebService

publicinterface Helloworld {

   String sayHi(String name);

}

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

(2)       开发一个web service实现类

也需要@webservice注解

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

package org.weir.cxf.ws.impl;

import javax.jws.WebService;

import org.weir.cxf.ws.Helloworld;

@WebService(endpointInterface="org.weir.cxf.ws.Helloworld",serviceName="HelloworldWs")

publicclass HelloworldWs implements Helloworld {

   @Override

   public String sayHi(String name) {

      return name+"HI";

   }

}

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

3)发布webservice

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

package lee;

import javax.xml.ws.Endpoint;

import org.weir.cxf.ws.Helloworld;

import org.weir.cxf.ws.impl.HelloworldWs;

publicclass ServerMain {

   publicstaticvoid main(String[] args) {

      Helloworld hw = new HelloworldWs();

      //发布web service

   Endpoint.publish("http://172.168.1.172/weir", hw);

      System.out.println("Ko");

   }

}

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

运行main方法不要结束

http://172.168.1.172/weir?wsdl

 

会出现:

<wsdl:definitions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://impl.ws.cxf.weir.org/"xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:ns2="http://schemas.xmlsoap.org/soap/http" xmlns:ns1="http://ws.cxf.weir.org/" name="HelloworldWs"targetNamespace="http://impl.ws.cxf.weir.org/">

<wsdl:import location="http://172.168.1.172/weir?wsdl=Helloworld.wsdl" namespace="http://ws.cxf.weir.org/"></wsdl:import>

<wsdl:binding name="HelloworldWsSoapBinding" type="ns1:Helloworld">

<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>

<wsdl:operation name="sayHi">

<soap:operation soapAction="" style="document"/>

<wsdl:input name="sayHi">

<soap:body use="literal"/>

</wsdl:input>

<wsdl:output name="sayHiResponse">

<soap:body use="literal"/>

</wsdl:output>

</wsdl:operation>

</wsdl:binding>

<wsdl:service name="HelloworldWs">

<wsdl:port binding="tns:HelloworldWsSoapBinding" name="HelloworldWsPort">

<soap:address location="http://172.168.1.172/weir"/>

</wsdl:port>

</wsdl:service>

</wsdl:definitions>

 

 

 

客户端

 

(1)       调用cxf提供的wsdl2java工具,根据wsdl文档生成相应的java代码。

(任何语言实现了web service,都需要提供、并暴露wsdl文档)

WSDL——web service definition language

       cmd进入客户端的src目录:

      

运行 wsdl2java http://172.168.1.172/weir?wsdl

wsdl2java –encoding utf-8 http://172.168.1.172/weir?wsdl

 

 

 

 

 

 

(2)       找到wsdl2java所生成类中,一个继承了service的类。

该类的实例可当成工厂来使用

3)调用service子类的实例的getxxxPort方法,返回远程web service的代理。

 

package lee;

import org.weir.cxf.ws.Helloworld;

import org.weir.cxf.ws.impl.HelloworldWs;

publicclass ClientMain {

   publicstaticvoid main(String[] args) {

      HelloworldWs factory = new HelloworldWs();

      Helloworld hw = factory.getHelloworldWsPort();

      System.out.println(hw.sayHi("weir"));

   }

}

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

形参、返回值

1.       当形参、返回值的类型是string、基本数据类型时,cxf可以处理

2.       当形参、返回值的类型是javabean式的符合类、list集合、数组等时,cxf可以处理

3.       还有一些像map、非javabean式的复合类,cxf是处理不了的

 

Web service的三个技术基础:

1.       wsdl  web service definition language ——web service定义语言

2.       soap

3.       uddl

一次web service的调用——其实并不是方法调用,而是发送soap消息(即xml文档片段)

 

 

 

 

 

 

 

阅读技巧从下往上阅读

 

 

调用一次web service的本质:

1.       客户端把调用方法参数,转换xml文档片段——该文档片段必须符合wsdl定义的格式

2.       通过网络,把xml文档片段从传给服务器

3.       服务器接受到xml文档片段

4.       服务器解析xml文档片段,提取其中的数据。并把数据转换调用webservice所需要的参数值

5.       服务器执行方法

6.       把执行方法得到的返回值,再次转换生成为xml文档片段(soap消息)——该文档片段必须符合wsdl定义的格式

7.       通过网络、把xml文档片段传给客户端

8.       客户端接收到xml文档片段

9.       客户端解析xml文档片段,提取其中的数据。并把数据转换调用webservice所需要的返回值

 

从上面调用本质来看,要一个语言支持web service

唯一的要求是:该预言支持xml文档解析、生成、支持网络传输。

 

 

 

cxf开发中,如果遇到cxf无法处理的类型,就需要程序员自行处理

(1)       使用@XmlJavaTypeAdapter注解修饰

使用annotation时,通过value属性指定一个转换器

2)实现自己的转换器。

 

 

 

 

 

Web service 如何进行权限控制?

解决思路:服务器端要求input消息总是携带有用户名密码信息

如果没有直接拒绝调用

 

Cxf引入拦截器

服务器端添加拦截器

 

 

 

 

 

 

wsdl2java –encoding utf-8 http://webservice.webxml.com.cn/WebServices/MobileCodeWS.asmx?wsdl

 

 

注释注解:@WSDLDocumentation(value="注释")

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Spring cxf 整合

1.spring发布SOAP方式web服务(jax-ws

 Web.xml

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

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">

  <display-name>ch03_1</display-name>

 

   <context-param>

    <param-name>contextConfigLocation</param-name>

    <param-value>/WEB-INF/beans-server.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>/ws/*</url-pattern>

  </servlet-mapping>

 

  <welcome-file-list>

    <welcome-file>index.html</welcome-file>

    <welcome-file>index.htm</welcome-file>

    <welcome-file>index.jsp</welcome-file>

    <welcome-file>default.html</welcome-file>

    <welcome-file>default.htm</welcome-file>

    <welcome-file>default.jsp</welcome-file>

  </welcome-file-list>

</web-app>

 

beans-server.xml:

 

<?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:jaxws="http://cxf.apache.org/jaxws"

    xmlns:jaxrs="http://cxf.apache.org/jaxrs"

    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

    http://cxf.apache.org/jaxrs

    http://cxf.apache.org/schemas/jaxrs.xsd">

   

    <!-- 导入 CXF 扩充XML标记库,用于在Spring启用WebService标记 -->

    <import resource="classpath*:META-INF/cxf/cxf.xml" />

    <import resource="classpath*:META-INF/cxf/cxf-extension-soap.xml" />

    <import resource="classpath*:META-INF/cxf/cxf-servlet.xml" />

 

    <!-- CXF 提供的内置拦截器 -->

    <bean id="inLoggingInterceptor" class="org.apache.cxf.interceptor.LoggingInInterceptor" />

    <bean id="outLoggingInterceptor" class="org.apache.cxf.interceptor.LoggingOutInterceptor" />

   

 

    <!-- 配置方案一  使用JAX-WS标准配置jaxws:endpoint,发布服务 -->

    <!-- id:spring bean标识,implementor:服务实现类,address:服务发布路径 -->

    <jaxws:endpoint id="merchant_1"

            implementor="com.cxfdemo.server.service.impl.IMerchantServiceImpl" address="/m_1">

        <!-- 可选配置入口拦截器 -->

        <jaxws:inInterceptors>

            <ref bean="inLoggingInterceptor" />

        </jaxws:inInterceptors>

        <!-- 可选配置出口拦截器 -->

        <jaxws:outInterceptors>

            <ref bean="outLoggingInterceptor" />

        </jaxws:outInterceptors>

    </jaxws:endpoint>

   

    <!-- 配置方案二  使用JAX-WS标准配置jaxws:endpoint,发布服务 -->

    <!-- id:spring bean标识,serviceClass:服务实现接口,address:服务发布路径 -->

    <jaxws:server id="merchant_2" serviceClass="com.cxfdemo.server.service.IMerchantService" address="/m_2">

        <!-- 注入:服务实现类 -->

        <jaxws:serviceBean>

            <ref bean="merchantService"/>

        </jaxws:serviceBean>   

       

        <!-- 可选配置入口拦截器 -->

        <jaxws:inInterceptors>

            <ref bean="inLoggingInterceptor" />

        </jaxws:inInterceptors>

        <!-- 可选配置出口拦截器 -->

        <jaxws:outInterceptors>

            <ref bean="outLoggingInterceptor" />

        </jaxws:outInterceptors>

       

    </jaxws:server>

    <!-- 服务实现类 -->

    <bean id="merchantService" class="com.cxfdemo.server.service.impl.IMerchantServiceImpl" />

 

</beans>

 

 

<?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:jaxws="http://cxf.apache.org/jaxws"

    xmlns:jaxrs="http://cxf.apache.org/jaxrs"

    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

    http://cxf.apache.org/jaxrs

    http://cxf.apache.org/schemas/jaxrs.xsd">

   

    <!-- 导入 CXF 扩充XML标记库,用于在Spring启用WebService标记 -->

    <import resource="classpath*:META-INF/cxf/cxf.xml" />

    <import resource="classpath*:META-INF/cxf/cxf-extension-soap.xml" />

    <import resource="classpath*:META-INF/cxf/cxf-servlet.xml" />

   

    <!-- spring管理ws client -->

    <!-- address:ws服务URL  serverClass:客户端服务接口类(非实现类)交由Spring生成客户端代理对象 -->

    <jaxws:client id="merchantServiceClient" address="http://localhost:8088/ch03_1/ws/m_2"

                                                        serviceClass="com.cxfdemo.server.client.IMerchantService"/>

   

 

</beans>

 

 

 

 

2.Rest

 

<?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:jaxws="http://cxf.apache.org/jaxws"

    xmlns:jaxrs="http://cxf.apache.org/jaxrs"

    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

    http://cxf.apache.org/jaxrs

    http://cxf.apache.org/schemas/jaxrs.xsd">

   

    <!-- 导入 CXF 扩充XML标记库,用于在Spring启用WebService标记 -->

    <import resource="classpath*:META-INF/cxf/cxf.xml" />

    <import resource="classpath*:META-INF/cxf/cxf-extension-soap.xml" />

    <import resource="classpath*:META-INF/cxf/cxf-servlet.xml" />

 

    <!-- CXF 提供的内置拦截器 -->

    <bean id="inLoggingInterceptor" class="org.apache.cxf.interceptor.LoggingInInterceptor" />

    <bean id="outLoggingInterceptor" class="org.apache.cxf.interceptor.LoggingOutInterceptor" />

   

    <jaxrs:server id="merchantrs" address="/">

       <jaxrs:serviceBeans>

           <ref bean="merchantService"/>

       </jaxrs:serviceBeans>

      

       <jaxrs:extensionMappings>

            <entry key="json" value="application/json" />

            <entry key="xml" value="application/xml" />

        </jaxrs:extensionMappings>

       

       <!-- 可选配置入口拦截器 -->

       <jaxrs:inInterceptors>

           <ref bean="inLoggingInterceptor" />

       </jaxrs:inInterceptors>

       <!-- 可选配置出口拦截器 -->

       <jaxrs:outInterceptors>

           <ref bean="outLoggingInterceptor" />

       </jaxrs:outInterceptors>   

    </jaxrs:server>

 

    <!-- 服务实现类 -->

    <bean id="merchantService" class="com.cxfdemo.server.service.impl.IMerchantServiceImpl" />

 

</beans>

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

软件技术开发分类:

1.本地调用(LPClocal procedure call

 

2.远程调用(RPCremote procedure call

2.1 远程方法调用(RMIremote method invocation

2.2 通用对象请求代理体系结构(CORBAcommon object request broker architecture

    IDL:接口描述语言 interface descripton language

2.3 互联网内部对象请求代理协议(RMI-IIOPinternet inner-object protocat

2.4 组件对象模型(COMCOM+component object model

2.5 web service

协议:

http超文本传输协议

SOAP(简单对象访问协议) simple object access protocol

 

Soa  service oriented architecture

 

ESB(企业服务总线) entertainment service bus

 

Sca service component architechture

 

 

 

 

 

 

 

  • 大小: 12.5 KB
  • 大小: 16.5 KB
  • 大小: 7.3 KB
  • 大小: 24 KB
  • 大小: 27.5 KB
分享到:
评论

相关推荐

    webservice cxf spring整合返回list,bean,string,json,xml项目完整实例

    例如,使用`@WebService`注解标记服务类,使用`@WebMethod`标记服务方法,然后通过CXF的Servlet或Spring的ApplicationContext来发布服务。 4. **返回List类型数据**:在Web服务中,你可以返回一个List类型的集合,...

    WebService CXF Spring Hibernate

    【WebService CXF Spring Hibernate】整合教程 在现代企业级应用开发中,集成各种技术框架以实现高效、可扩展和灵活的解决方案是常见的实践。本教程将深入探讨如何将`WebService`(基于SOAP协议的服务)与Java开发...

    webservice CXF结合Spring所需jar包

    本篇文章将深入探讨如何使用CXF与Spring集成,以及在开发过程中所需的jar包。 首先,让我们理解Web服务的基本概念。Web服务是一种通过网络(通常基于HTTP协议)进行通信的应用程序接口(API)。它允许不同系统间的...

    webservice cxf 整合spring例子源代码

    【标题】:Webservice CXF 整合Spring的实例源码解析 在Web服务开发中,Apache CXF是一个广泛使用的开源框架,它提供了创建、部署和管理Web服务的强大功能。CXF不仅支持SOAP,还支持RESTful API,使得开发者能够...

    cxf+spring实现webservice

    8. **集成测试**:利用Spring Test和CXF的模拟测试工具,可以方便地进行Web服务的单元测试和集成测试。 9. **性能优化**:可以通过调整CXF的配置,例如缓存策略、线程池大小等,优化Web服务的性能。 10. **监控与...

    webservice cxf+spring maven项目

    CXF不仅简化了Web服务的开发,还支持基于Spring的集成,使服务更容易管理。 【Spring框架】 Spring是一个全面的Java应用开发框架,提供了依赖注入(DI)和面向切面编程(AOP)等核心功能。在Web服务场景中,Spring...

    WebService的CXF整合Spring

    通过以上步骤,我们可以构建出一个高效且易于维护的CXF-Spring集成Web服务系统。这种整合不仅使开发工作变得更加简洁,还充分利用了Spring的强大功能,提高了系统的可扩展性和灵活性。在实际项目中,开发者可以根据...

    webservice-cxf-spring-jar.zip

    【标题】"webservice-cxf-spring-jar.zip" 是一个包含了使用Apache CXF与Spring框架集成开发Web服务的Java库集合。这个压缩包提供了一整套必要的JAR文件,以便于开发者在他们的项目中快速搭建和运行基于CXF的Web服务...

    webservice cxf示例工程集成spring

    【标题】"webservice cxf示例工程集成spring"揭示了这个项目的核心是关于Web服务(Web Service)的实现,采用Apache CXF框架,并且整合了Spring框架进行更高效的管理和控制。Apache CXF是一个开源的Java框架,它使得...

    Apache CXF2+Spring2.5轻松实现WebService

    Apache CXF和Spring提供了丰富的扩展点,可以集成如Spring Security来控制访问权限,使用Spring AOP来处理事务,以及通过CXF的拦截器机制来实现自定义的日志、验证等功能。 总结来说,Apache CXF 2与Spring 2.5的...

    WebService CXF 详细教程

    **WebService CXF 详解** **一、WebService简介** WebService是一种基于标准的,可以在不同操作系统、编程语言之间交换数据的Web应用程序。它通过WSDL(Web服务描述语言)定义了服务接口,利用SOAP(简单对象访问...

    cxf+spring=webservice CXF 应用开发

    综上所述,"cxf+spring=webservice CXF 应用开发"的主题涵盖了从基础的Web服务概念,到CXF和Spring的集成,再到实际的应用开发、测试和部署等多个方面。通过深入学习这些知识点,开发者可以高效地构建和管理高质量的...

    CXF WebService整合Spring示例工程代码demo

    CXF WebService整合Spring示例工程代码demo可以直接导入eclipse。参照网页http://www.cnblogs.com/hoojo/archive/2011/03/30/1999563.html 完成的webService服务提供。 大致步骤: 1.引入cxf和其他需要的jar包,(本...

    webservice cxf_demo

    【标题】"webservice cxf_demo" 涉及到的是使用Apache CXF框架创建的Web服务示例项目。在Web服务的世界里,CXF是一个流行的开源工具,它...此外,熟悉CXF与其他企业级框架(如Spring)的集成也是提升开发效率的关键。

    CXF webservice 示例工程(集成spring)

    综上所述,这个CXF Webservice示例工程涵盖了Spring集成、Web服务安全、大文件传输优化以及不同类型数据的处理,是学习和实践CXF框架的理想起点。通过对这些知识点的深入理解和实践,开发者能够更好地掌握如何在实际...

    webService CXF集成例子

    在这个"webService CXF集成例子"中,我们将深入探讨如何不依赖Spring框架来使用CXF进行Web服务的开发和测试。 1. **Apache CXF简介**: Apache CXF是一个全面的Web服务框架,它支持多种Web服务标准,如SOAP、WS-*...

    基于spring+cxf实现用户文件传输的webservice

    基于spring+cxf实现用户文件传输的webservice 在本文中,我们将探讨如何使用Spring+CXF实现用户文件传输的Webservice。该Webservice提供了基本的报文上传和查询功能,同时还提供了用户身份验证功能。 Spring 和 ...

    web service cxf spring集成

    标题"Web Service CXF Spring集成"表明我们将探讨如何在Spring环境中利用Apache CXF来创建和整合Web服务。首先,你需要在项目中引入CXF和Spring的相关依赖。通常,这可以通过在Maven或Gradle的配置文件中添加相应的...

    SpringBoot WebService cxf接口发布以及logbok日志集成

    在IT行业中,SpringBoot、WebService和cxf是三个非常重要的技术组件,它们分别代表了现代Java应用程序开发的基础、服务间通信的重要方式以及一种强大的服务框架。在这个主题中,我们将深入探讨如何在SpringBoot项目...

    webService(基于cxf)的完整例子

    7. **CXF与Spring集成**:CXF与Spring框架集成紧密,可以方便地将服务组件化,利用Spring的依赖注入和管理特性。通过Spring配置,可以实现服务的自动发布和生命周期管理。 8. **安全与认证**:CXF支持多种安全机制...

Global site tag (gtag.js) - Google Analytics