实现webservice主要有axis2和cxf两个框架,感觉目前cxf比较流行,本文介绍一下用cxf和Spring如何实现webservice端口,网上的资源都比较久,好多博客介绍的方法到目前已经出现了这样那样的错误,导致无法实现,所以本文也算是对webservice实现过程中需要注意问题的一个总结。
使用软件:myeclipse 10,tomcat 7,apache-cxf-3.1.4,spring-framework-4.1.6.RELEASE
第一步:在myeclipse中新建Web Project,将cxf和spring的jar包全部复制到新建项目下的文件夹WEB-INF下的lib中。文件目录如下图所示:
有一点很重要,如果项目的JRE版本为1.8,java文件则会报错,提示The type java.lang.CharSequence cannot be resolved. It is indirectly referenced from required .class files.解决办法就是将项目JRE切换到1.7或者以下,切换方法如下:右键项目名称,Build Path->Configure Build Path->Library中选中JRE System Libarary,然后Remove,然后选择Add Library,选择JRE System Library中的Alternate JRE,选择安装的1.7及以下的JRE,myeclipse10中自带的JRE版本为1.6。
第二步:实现webservice的接口和对应的实现类,源码如下:
package com.test;
import javax.jws.WebService;
import javax.jws.WebParam;
@WebService
public interface TestService {
public String sayHello(@WebParam(name="arg0")String text);
}
下来就是此接口的实现:
package com.test;
import javax.jws.WebService;
@WebService(endpointInterface="com.test.TestService",serviceName="HelloService")
public class TestServiceImpl implements TestService {
public String sayHello(String text) {
return "Hello" + text ;
}
}
第三步:在src文件夹下编写applicationContext-server.xml文件:
<?xml version="1.0" encoding="UTF-8"?>
<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-extension-soap.xml" />
<import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
-->
<jaxws:endpoint id="HelloService" implementor="com.test.TestServiceImpl"
address="/HelloService" />
</beans>
这个文件中有一个很重要的地方需要注意,在很多博客中此文件都有上述文件已经被注释过的三个import语句,不知道在cxf旧版本中是否必须要这样做,但在我用得3.1.4版本中并不需要,反而如果这样导入,在发布的时候是会报错的。
第四步:web.xml文件如下:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>cxf_demo</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<display-name>cxftest</display-name>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext-server.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>CXFServlet</servlet-name>
<servlet-class>org.apache.cxf.transport.servlet.CXFServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>CXFServlet</servlet-name>
<url-pattern>/services/*</url-pattern>
</servlet-mapping>
</web-app>
很简单的四步操作就可以发布自己的webservice了,最后通过http://localhost:8080/cxftest/services/可以来验证是否成功,如何发布成功,会有如下界面: