java cxf spring_cxf+spring

1、由于spring4.3版本,所以cxf需要3.0及以上版本

2、cxf所需jar包

20180314172955439273.png

3、启动项目时报错

Caused by: java.lang.AbstractMethodError: javax.xml.parsers.DocumentBuilderFactory.setFeature(Ljava/lang/String;Z)V

替换了xercesImpl.jar和xml-apis.jar

一般报错的时候需要更新jar包

4、

applicationContextServices.xml

20180314172955785966.png

web.xml

org.springframework.web.context.ContextLoaderListener

contextConfigLocation

/WEB-INF/classes/applicationContextServices.xml

cxf

org.apache.cxf.transport.servlet.CXFServlet

1

cxf

/services/*

HelloWorldCxf.java

package com.cc.webservice;

import javax.jws.WebParam;

import javax.jws.WebService;

@WebService

public interface HelloWorldCxf{

public String sayHi(@WebParam(name="arg0")String text);

}

HelloWorldImpl.java

package com.cc.webservice;

import javax.jws.WebService;

@WebService( endpointInterface="com.cc.webservice.HelloWorldCxf")

public class HelloWorldImpl implements HelloWorldCxf

{

public HelloWorldImpl()

{

System.out.println("-- init HelloWorldImpl --");

}

public String sayHi(String text)

{

System.out.println("in sayHi, text : " + text);

return "hi " + text + ".";

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值