用Maven搭建基于CXF框架的简单WebServiceDemo

本文介绍了如何在IDEA 14中使用Maven创建一个基于CXF框架的Web Service项目。首先新建名为CXFWebService的项目,包含服务端webService_server和客户端webService_client两个模块。接着引入相关依赖,然后创建服务接口及其实现,并通过jetty配置运行服务。客户端主要涉及Spring配置,通过cxf-client.xml配置文件和SpringClient类进行服务调用测试。最后,通过jetty启动服务,验证客户端能够成功调用服务端接口。
摘要由CSDN通过智能技术生成

工具:IDEA 14

步骤一 新建项目

项目名CXFWebService
新建两个模块webService_server和webService_client
这里写图片描述

步骤二 引入依赖
<modules>
     <module>WebService_server</module>
     <module>WebService_Client</module>
</modules>

    <groupId>me.yulin.rao</groupId>
    <artifactId>CXFWebServices</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>pom</packaging>

    <properties>
        <cxf.version>2.7.5</cxf.version>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.apache.cxf</groupId>
            <artifactId>cxf-rt-frontend-jaxws</artifactId>
            <version>${cxf.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.cxf</groupId>
            <artifactId>cxf-rt-transports-http</artifactId>
            <version>${cxf.version}</version>
        </dependency>
        <dependency>
            <
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值