cxf+spring

Posted taz372436

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 + ".";
}
}

 




































以上是关于cxf+spring的主要内容,如果未能解决你的问题,请参考以下文章

Springspring事务失效的12种场景

SpringSpring MVCMyBatis

SpringSpring Data JPA

SpringSpring系列4之Spring支持JDBC

SpringSpring底层核心原理解析

SpringSpring 网络原因导致日志下载失败