Web应用使用Apache CXF 建立 WebService——详细案例(与Spring结合)

转载请注明出处:http://blog.csdn.net/u013474104/article/details/45097957

步骤— —

1.使用Maven依赖jar文件

2.web.xml配置

a.加载cxf-beans.xml配置文件

b.配置CXF Servlect

3.cxf-beans.xml服务配置

a.lics2uldwms.java服务接口类

b.lics2uldwms.java服务接口的实现类

4.访问服务接口

5.Client调用服务接口——TestDemo.java类

————————————————————————————————————————

1.使用Maven依赖jar文件

<!-- 增加cxf依赖  start-->
			<dependency>
				<groupId>org.apache.cxf</groupId>
				<artifactId>cxf-rt-frontend-jaxws</artifactId>
				<version>2.7.11</version>
			</dependency>	

			<dependency>
				<groupId>org.apache.cxf</groupId>
				<artifactId>cxf-rt-transports-http</artifactId>
				<version>2.7.11</version>
			</dependency>
	    	<!-- 增加cxf依赖  end-->

2.web.xml配置

a.加载cxf-beans.xml配置文件

<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>classpath:conf/applicationContext.xml,classpath:conf/cxf-beans.xml</param-value>
	</context-param>

	<listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	</listener>

b.配置CXF Servlect

<servlet>
		<servlet-name>CXFServlet</servlet-name>
		<servlet-class>org.apache.cxf.transport.servlet.CXFServlet</servlet-class>
	</servlet>
	<servlet-mapping>
		<servlet-name>CXFServlet</servlet-name>
		<url-pattern>/ws/*</url-pattern>
	</servlet-mapping>

3.cxf-beans.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"
	xmlns:context="http://www.springframework.org/schema/context"
    xmlns:http-conf="http://cxf.apache.org/transports/http/configuration"
	xsi:schemaLocation="
	http://cxf.apache.org/jaxws
	http://cxf.apache.org/schemas/jaxws.xsd
	http://www.springframework.org/schema/beans
	http://www.springframework.org/schema/beans/spring-beans.xsd
	http://cxf.apache.org/transports/http/configuration
	http://cxf.apache.org/schemas/configuration/http-conf.xsd
	">

	<!-- Import apache CXF bean definition 固定 -->
	<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" />

	<!--
		CXF发送、接收消息超时设置,对所有的服务生效
		ConnectionTimeout:连接超时
		ReceiveTimeout:接收超时
	-->
	 <!-- <http-conf:conduit name="*.http-conduit">
		<http-conf:client ConnectionTimeout="1000" ReceiveTimeout="100"/>
	</http-conf:conduit> -->

	<!--
		发布服务
	-->
	<bean id="lics2uldwmsBean" class="com.ws.lics2uldwms.lics2uldwmsImpl" />
	<jaxws:server id="lics2uldwms" address="/lics2uldwms"
		serviceClass="com.ws.lics2uldwms.lics2uldwms">
		<jaxws:serviceBean>
			<ref bean="lics2uldwmsBean"/>
		</jaxws:serviceBean>
	</jaxws:server>
</beans>

a.lics2uldwms.java服务接口类

package com.ws.lics2uldwms;

import javax.jws.WebMethod;
import javax.jws.WebService;

@WebService
//@SOAPBinding(style=Style.RPC)
/*@SOAPBinding(style = Style.RPC) 动态调用JaxWsDynamicClientFactory 不支持该注解*/
public interface lics2uldwms {

	/**
	 *1 获取物资编目
	 *
	 * @param msg
	 * @return
	 */
	@WebMethod
	public String reqGoods(String msg);

}

b.lics2uldwms.java服务接口的实现类

package com.ws.lics2uldwms;

import java.util.ArrayList;
import java.util.List;

import javax.annotation.Resource;
import javax.jws.WebService;

import com.hidp.common.Constant;
import com.utils.DateTimeUtils;
import com.wms.service.baseinfo.ProductService;
import com.ws.xml.CheckHeader;
import com.ws.xml.FormXmlDom4J;

@WebService(endpointInterface = "com.ws.lics2uldwms.lics2uldwms", serviceName = "lics2uldwmsImpl")
public class lics2uldwmsImpl implements lics2uldwms {

	@Resource
	ProductService productService;

	private String sstarTime="";

	private String sendTime="";

	/**
	 * 1获取物资编目
	 *
	 * @param msg
	 * @return
	 */
	@SuppressWarnings("rawtypes")
	@Override
	public String reqGoods(String msg) {
		sstarTime=DateTimeUtils.getCurrentDateTime();
		String rmsg = "";
		try {
			if (!CheckHeader.checkHeader(msg,"uld")) {
				Constant.log4j.error("方法名称:reqGoods,失败原因:用户名密码验证不通过");
				return FormXmlDom4J.generateStateXml("1", "失败:用户名密码验证不通过");
			}
			List ls = new ArrayList<>();
			ls = productService.queryProductWs();
			rmsg = FormXmlDom4J.generateProductXml(ls);
		} catch (Exception e) {
			Constant.log4j.error("方法名称:reqGoods,失败原因:"+e.toString());
			return FormXmlDom4J.generateStateXml("1", "失败:" + e.toString());
		}
		sendTime=DateTimeUtils.getCurrentDateTime();
		//记录响应时间
		Constant.log4j.info("方法名称:reqGoods,起始时间:"+sstarTime+",结束时间:"+sendTime);
		return rmsg;
	}

}

4.访问服务接口

地址输入下面之前自定义的地址,回车— —

点击上述链接后,将跳转到wsdl地址,TestDemo.java中我们需要的是wsdl的地址

5.Client调用服务接口——TestDemo.java类

package com.ws.demo.wsservice;

import org.apache.cxf.endpoint.Client;
import org.apache.cxf.jaxws.endpoint.dynamic.JaxWsDynamicClientFactory;
import org.dom4j.Document;
import org.dom4j.io.SAXReader;

	/**
	 * client类
	 * @author ckz
	 *
	 */
	public class TestDemo {
		public static void main(String[] args) throws Exception {
			JaxWsDynamicClientFactory dcf = JaxWsDynamicClientFactory.newInstance();
			Client client = dcf.createClient("http://localhost:8081/lics/ws/fwms2assist?wsdl");
			boolean outTimeSate = false;
			Object[] res =null;
			try{
				/*//设置 CXF客户端配置请求超时限制
				HTTPConduit http = (HTTPConduit) client.getConduit();
				HTTPClientPolicy httpClientPolicy = new HTTPClientPolicy();
				//连接超时设置
				httpClientPolicy.setConnectionTimeout(1000);
				httpClientPolicy.setAllowChunking(false);
				//接收超时设置
				httpClientPolicy.setReceiveTimeout(5000);
				http.setClient(httpClientPolicy);*/
				//读取xml文件的doc对象,Fwms2Assist_reqProduct.xml为传入的参数
				String filePath = TestDemo.class.getClassLoader().getResource("Fwms2Assist_reqGoods.xml").getPath();
				SAXReader reader = new SAXReader();
				Document doc = reader.read(filePath);
				//调用接口
				res = client.invoke("reqGoods", doc.asXML());
			}catch(Exception ex){
				outTimeSate=true;
				ex.printStackTrace();
			}
			if(outTimeSate){
				System.out.println("服务超时!");
			}else{
				System.out.println(com.utils.BASE64Util.geDecoderStr((String) res[0]));
			}
	}

}
时间: 2024-10-28 20:12:34

Web应用使用Apache CXF 建立 WebService——详细案例(与Spring结合)的相关文章

Apache CXF实现WebService入门教程(附完整源码)

Apache CXF实现WebService非常简单实用,只需要几步就可以实现一个简单的web service. 首先我们需要新建一个maven项目,在pom中添加依赖和jetty作为测试的web service的web容器. 如下是测试用到的pom文件内容: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance&qu

Apache CXF实现WebService开发(二)

本文我们将承接上文Apache CXF实现WebService开发(一) http://blog.csdn.net/mahoking/article/details/41631993.完成将我们开发的WebService与我们的Web项目部署到同一个容器内例如Tomcat或JBOSS或其他的.本例我们使用的CXF的版本为apache-cxf-2.6.16.所使用是的相关jar包(文件)和文件所在的路径为: /CXFWebServer/WebRoot/WEB-INF/lib/commons-log

Apache CXF实现WebService开发(一)

Apache CXF简介 Apache CXF 是一个开源的 Services 框架,CXF 帮助您利用 Frontend 编程 API 来构建和开发 Services ,像 JAX-WS .这些 Services 可以支持多种协议,比如:SOAP.XML/HTTP.RESTful HTTP 或者 CORBA ,并且可以在多种传输协议上运行,比如:HTTP.JMS 或者 JBI,CXF 大大简化了 Services 的创建,同时它继承了 XFire 传统,一样可以天然地和 Spring 进行无缝

在web项目中使用cxf开发webservice,包含spring支持

本文主要介绍了,如何使用cxf内置的例子,学会开发webserivce,在web项目中使用,且包含spring支持. webserivce的开发可以使用cxf或者axis,好像还有httpclient等等.以前也多次研究过,上网搜过很多别人的例子来看,写过代码下来,但没有总结过,少废话,上干货. 1. 到cxf的官网下载jar包.我用的是以前下载下来的apache-cxf-2.7.6.zip,并非最新版本.下载完成后,解压后,目录结构如下左图: 打开其中的samples文件夹,其内包含了很多例子

Apache CXF实现WebService发布和调用

第一种方法:不用导入cxf jars 服务端: 1. 新建Web工程 2.新建接口和实现类.测试类 目录结构图如下: 接口代码: package com.cxf.spring.service; import javax.jws.WebMethod; import javax.jws.WebService; @WebService public interface IGreetingService { @WebMethod public String greeting(String name);

Spring 组cxf宣布webservice

通过spring宣布webservice接口 spring jar包+cxf jar Java包 下列文件丢失jar包需要下载自己 项目结构 watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvaXRscWk=/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" > 1.实体类 package com.test.entity; public class Use

Spring 集合cxf发布webservice

通过spring发布webservice接口 spring jar包+cxf jar Java包 以下文件缺少jar包需要自行去下载 项目结构 1.实体类 package com.test.entity; public class User { public User(String name, String pwd, String sex) { super(); this.name = name; this.pwd = pwd; this.sex = sex; } private String

webService总结(二)——使用CXF手动发布webService(不使用Spring)

上篇博客:webService总结(一)--使用CXF发布webService(不使用Spring) 介绍了不使用Spring自动发布webService,这篇博客介绍第二种方法--使用CXF手动发布webService(不使用Spring). CXF自动发布webService,我们使用的是Tomcat服务器.而使用CXF手动发布webService我们不再使用Tomcat,取而代之的是内嵌的jetty服务器.其实,jetty跟Tomcat并没有本质的区别,只是表现的形式不同,使用方法不同.既

CXF 实现 webservice 并且部署在web项目中 tomcat作为容器

在tomcat作为容器发布webservice服务前,我们先来看一个简单的不通过容器即可发布服务的例子 package com.tree.webservice; import javax.jws.WebService; @WebService public interface HelloWorld { public String sayHello(String content); } package com.tree.webservice.impl; import javax.jws.WebSe