CXF发布webservice

 cxf发布服务

第一步

在pom.xml里引入相应jar包

 

<dependency>
    <groupId>org.apache.cxf</groupId>
    <artifactId>cxf-rt-frontend-jaxws</artifactId>
    <version>2.3.2</version>
</dependency>
<dependency>
    <groupId>org.apache.cxf</groupId>
    <artifactId>cxf-rt-transports-http</artifactId>
    <version>2.3.2</version>
</dependency>

 第二步

 

   实现步骤

1.接口

@WebService
public interface xfiretestCXF {
 public String testmethod(String str);  
}

 

2.实现类

@WebService(endpointInterface="cn.ths.emi.webservice.xfire.xfiretestCXF",serviceName="testCXF")
public class xfiretestCXFimpl implements xfiretestCXF{
 
 @Override
 public String testmethod(String str)
 {
  return "abc"+str;
 }
 
}

 

第三步

  修改spring配置文件

 

(1)在applicationContext.xml的文件头中加入

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

      http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd

(2) 在applicationContext.xml指定要发布成webservice的bean

<!-- 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" />

 

    <jaxws:endpoint id="helloService" implementor="com.ths.projects.ths.server.HelloWorldServerImp" address="/helloService" />

<!-- webservice 结束 -->

 第四步

 

  web.xml中加入以下servlet,可以查看已经部署的webservice

<!-- CXF配置方式 -->
 <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>/webservice/*</url-pattern>
   </servlet-mapping>

第五步

重新打包发布部署,启动

 

第六步

检查是否发布webservice成功

 

 

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值