cxf+spring

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

2、cxf所需jar包

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

web.xml

<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/classes/applicationContextServices.xml</param-value>
</context-param>

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

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 + ".";
}
}

 

转载于:https://www.cnblogs.com/taz372436/p/8568785.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值