码迷,mamicode.com
首页 > 编程语言 > 详细

cxf+spring

时间:2018-03-14 18:14:46      阅读:432      评论:0      收藏:0      [点我收藏+]

标签:ade   --   doc   分享图片   map   import   apach   star   text   

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

标签:ade   --   doc   分享图片   map   import   apach   star   text   

原文地址:https://www.cnblogs.com/taz372436/p/8568785.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!