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