1.定义SEI
package com.demo.cxf.helloword;
import java.util.List;
import javax.jws.Oneway;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
@WebService(targetNamespace="com.demo.cxf.helloword")
public interface HelloWord {
String sayHello(@WebParam(name="text") String text);
}
2.实现SEI
package com.demo.cxf.helloword.impl;
import javax.jws.WebService;
import com.demo.cxf.helloword.HelloWord;
@WebService(targetNamespace="com.demo.cxf.helloword")
public class HelloWordImpl implements HelloWord {
@Override
public String sayHello(String text) {
return "Hello " + text;
}
}
3.服务端配置
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jaxws="http://cxf.apache.org/jaxws"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd">
<import resource="classpath:META-INF/cxf/cxf.xml" />
<import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
<jaxws:endpoint id="helloWorld"
implementor="com.demo.cxf.helloword.impl.HelloWordImpl" address="/HelloWorld">
</jaxws:endpoint>
</beans>
4.客户端配置
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:jaxws="http://cxf.apache.org/jaxws"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd">
<jaxws:client id="helloClient"
serviceClass="com.demo.cxf.helloword.HelloWord"
address="http://localhost:8080/webservice/services/HelloWorld" />
</beans>
5.客户端代码
ApplicationContext context = new ClassPathXmlApplicationContext("cxf/cxf-client.xml");
HelloWord helloWord = (HelloWord)context.getBean("helloClient");
System.out.println(helloWord.sayHello("Bruce"));
6.web.xml中需要加入以下配置
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>WEB-INF/cxf-servlet.xml</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<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>