`
阅读更多
cxf开发webservice的方式有很多,常见的如下:

   1、代理方式:JaxWsProxyFactoryBean;
   2、动态客户端:JaxWsDynamicClientFactory;
   3、命令自动生成:wsdl2java -p cn.creditease.orgams.test.cxf -d d:\cxf\src -all http://10.106.91.47:8080/jeesxb-web-orgams-api/services/creditWS?wsdl

针对前两张方式简单做下对比(仅仅个人理解,不权威,欢迎拍砖补充)  

   JaxWsProxyFactoryBean
   简介:调用方式采用了和RMI类似的机制,即客户端直接服务器端提供的服务接口(interface),CXF通过运行时代理生成远程服务的代理对象,在客户端完成对webservice的访问;几个必填的字段:setAddress-这个就是我们发布webservice时候的地址,保持一致
     缺点:这种调用service的好处在于调用过程非常简单,就几行代码就完成一个webservice的调用,但是客户端也必须依赖服务器端的接口,这种调用方式限制是很大的,要求服务器端的webservice必须是java实现--这样也就失去了使用webservice的意义。

  JaxWsDynamicClientFactory
     简介:只要指定服务器端wsdl文件的位置,然后指定要调用的方法和方法的参数即可,不关心服务端的实现方式。

闲话少说,先把动态客户端的工具类贴出来,如下:


import java.beans.BeanInfo;
import java.beans.IntrospectionException;
import java.beans.PropertyDescriptor;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.List;
import javax.xml.namespace.QName;
import org.apache.cxf.endpoint.Client;
import org.apache.cxf.endpoint.Endpoint;
import org.apache.cxf.jaxws.endpoint.dynamic.JaxWsDynamicClientFactory;
import org.apache.cxf.service.model.BindingInfo;
import org.apache.cxf.service.model.BindingMessageInfo;
import org.apache.cxf.service.model.BindingOperationInfo;
import org.apache.cxf.service.model.MessagePartInfo;
import org.apache.cxf.service.model.ServiceInfo;
import org.apache.cxf.transport.http.HTTPConduit;
import org.apache.cxf.transports.http.configuration.HTTPClientPolicy;
import java.beans.Introspector;

/**
 * @Description: webservice客户端工具类
 * @Author: Terry
 * @Company: **
 * @Version: V1.0
 * @Create : 2016年8月8日 下午3:18:03
 */
public class HttpClientWS {

	/*
	 * 客户端调用
	 */
	public static Object[] webServiceClient(String webServiceUrl, String server, String targetNameSpace,
			String soapBinding, HashMap<String, Object> map) {

		// 动态客户端
		JaxWsDynamicClientFactory jwdcf = JaxWsDynamicClientFactory.newInstance();
		// 调用服务
		Client client = jwdcf.createClient(webServiceUrl);
                 //设置超时单位为毫秒  
                 HTTPConduit http = (HTTPConduit) client.getConduit();        
                 HTTPClientPolicy httpClientPolicy = new HTTPClientPolicy();        
                 httpClientPolicy.setConnectionTimeout(3000);  //连接超时      
                 httpClientPolicy.setAllowChunking(false);     //取消块编码   
                 httpClientPolicy.setReceiveTimeout(3000);     //响应超时  
                 http.setClient(httpClientPolicy); 
		Object[] obj = null;
		try {
			obj = client.invoke(server, getObject(client, server, targetNameSpace, soapBinding, map));

		} catch (Exception e) {
			e.printStackTrace();
		}
		return obj;
	}

	/*
	 * 拼装入参
	 */
	public static Object getObject(Client client, String server, String targetNameSpace, String soapBinding,
			HashMap<String, Object> map) throws InstantiationException, IllegalAccessException, IntrospectionException,
			IllegalArgumentException, InvocationTargetException {

		Endpoint endpoint = client.getEndpoint();

		ServiceInfo serviceInfo = endpoint.getService().getServiceInfos().get(0);
		// 创建QName来指定NameSpace和要调用的service
		QName bindingName = new QName(targetNameSpace, soapBinding);
		BindingInfo binding = serviceInfo.getBinding(bindingName);
		// 创建QName来指定NameSpace和要调用的方法
		QName opName = new QName(targetNameSpace, server);

		BindingOperationInfo boi = binding.getOperation(opName);
		BindingMessageInfo inputMessageInfo = null;
		if (!boi.isUnwrapped()) {
			inputMessageInfo = boi.getWrappedOperation().getInput();
		} else {
			inputMessageInfo = boi.getUnwrappedOperation().getInput();
		}

		return setInputProperty(opName, binding, inputMessageInfo, map);

	}

	/*
	 * 拼装入参属性
	 */
	public static Object setInputProperty(QName opName, BindingInfo binding, BindingMessageInfo inputMessageInfo,
			HashMap<String, Object> map) throws InstantiationException, IllegalAccessException, IntrospectionException,
			IllegalArgumentException, InvocationTargetException {

		List<MessagePartInfo> parts = inputMessageInfo.getMessageParts();
		// 取得对象实例
		MessagePartInfo partInfo = parts.get(0);
		Class<?> partClass = partInfo.getTypeClass();
		Object inputObject = partClass.newInstance();

		for (String key : map.keySet()) {

			PropertyDescriptor partPropertyDescriptor = new PropertyDescriptor(key, partClass);
			Method setBodysigninfo = partPropertyDescriptor.getWriteMethod();
			setBodysigninfo.invoke(inputObject, map.get(key));
		}

		return inputObject;
	}

	/*
	 * javabean转map
	 */

	public static HashMap convertBeanToMap(Object bean)
			throws IntrospectionException, IllegalAccessException, InvocationTargetException {
		Class type = bean.getClass();
		HashMap returnMap = new HashMap();
		BeanInfo beanInfo = Introspector.getBeanInfo(type);

		PropertyDescriptor[] propertyDescriptors = beanInfo.getPropertyDescriptors();
		for (int i = 0; i < propertyDescriptors.length; i++) {
			PropertyDescriptor descriptor = propertyDescriptors[i];
			String propertyName = descriptor.getName();
			if (!propertyName.equals("class")) {
				Method readMethod = descriptor.getReadMethod();
				Object result = readMethod.invoke(bean, new Object[0]);
				if (result != null) {
					returnMap.put(propertyName, result);
				} else {
					returnMap.put(propertyName, "");
				}
			}
		}
		return returnMap;
	}

	/*
	 * map转javabean
	 */
	public static Object convertMapToBean(Class type, HashMap map)
			throws IntrospectionException, IllegalAccessException, InstantiationException, InvocationTargetException {
		BeanInfo beanInfo = Introspector.getBeanInfo(type); // 获取类属性
		Object obj = type.newInstance(); // 创建 JavaBean 对象

		// 给 JavaBean 对象的属性赋值
		PropertyDescriptor[] propertyDescriptors = beanInfo.getPropertyDescriptors();
		for (int i = 0; i < propertyDescriptors.length; i++) {
			PropertyDescriptor descriptor = propertyDescriptors[i];
			String propertyName = descriptor.getName();

			if (map.containsKey(propertyName)) {
				// 下面一句可以 try 起来,这样当一个属性赋值失败的时候就不会影响其他属性赋值。
				Object value = map.get(propertyName);

				Object[] args = new Object[1];
				args[0] = value;

				descriptor.getWriteMethod().invoke(obj, args);
			}
		}
		return obj;
	}

}

分享到:
评论

相关推荐

    Cxf+webservice(客服端和服务端)

    【Cxf+WebService:构建服务与客户端的详解】 在IT行业中,Web Service是一种通过互联网交换业务数据的应用程序接口(API)。它允许不同系统之间的互操作性,即使这些系统使用不同的编程语言、操作系统或硬件平台。...

    Spring+SpringMVC+MyBatis+Maven+CXF+WebService之Web项目整合

    蛮简陋的一个项目,适合新手使用。 这是一个包含简单登录和查询的Web项目,内附有一个表sql文件和两个java项目。...WS_Client是客户端,是一个project项目,内部有一个WebService的测试类,用来测试从服务端取得数据

    cxf+webservice

    "cxf+webservice"的组合意味着我们将讨论如何使用Apache CXF来创建和消费Web服务。 Web服务是一种通过网络进行通信的软件系统,它们遵循开放的标准,如WSDL(Web Services Description Language)和SOAP(Simple ...

    简单的webservice+Cxf+Spring数据对接实例以及jar.rar

    简单的webservice+Cxf+Spring数据对接实例以及jar.rar简单的webservice+Cxf+Spring数据对接实例以及jar.rar简单的webservice+Cxf+Spring数据对接实例以及jar.rar简单的webservice+Cxf+Spring数据对接实例以及jar.rar...

    cxf+spring webservice demo client

    【标题】:“cxf+spring webservice demo client” 在IT领域,Web服务是一种常见的系统间交互方式,它允许不同应用程序之间共享数据和服务。本示例是关于如何使用Apache CXF和Spring框架创建一个Web服务客户端的...

    springmvc+webservice(cxf)+maven 完整实例

    Spring MVC、WebService(CXF)和Maven是Java开发中常用的三大技术,它们在构建现代企业级应用中扮演着重要角色。本实例结合这三者,提供了一个完整的可运行项目,便于开发者快速理解和实践。 首先,Spring MVC是...

    Spring+CXF+tomcat开发webservice

    这个项目"Spring+CXF+tomcat开发webservice"旨在教你如何利用这些技术搭建一个完整的Web服务环境,包括服务端和服务端客户端的实现。 **Spring** 是一个广泛使用的Java企业级应用开发框架,它提供了依赖注入(DI)...

    cxf+spring实现webservice

    CXF,全称CXF Commons eXtensible Framework,是一个开源的Java Web服务框架,它支持多种Web服务标准,如SOAP、RESTful等。CXF允许开发者以Java编程方式或者基于XML的WSDL(Web Services Description Language)文件...

    cxf+spring webservice server demo

    【标题】"cxf+spring webservice server demo"是一个基于Apache CXF和Spring框架构建的Web服务服务器端示例项目。这个项目展示了如何将CXF与Spring集成,以创建、部署和运行一个高效的Web服务。 【描述】指出,由于...

    CXF+Spring+Tomcat发布WebService

    【标题】"CXF+Spring+Tomcat发布WebService"涉及的是使用Apache CXF框架与Spring框架结合,在Tomcat服务器上部署和消费Web服务的过程。这是一个常见的企业级应用开发场景,特别是对于实现基于SOAP协议的Web服务。...

    cxf+spring webService实例

    在这个"CXF+Spring WebService实例"中,我们将深入探讨如何利用这两个工具来创建、发布和消费Web服务。 CXF全称为CXF CXF (CXF XFire + XWS), 是一个开源的Java框架,它支持多种Web服务标准,如SOAP、WSDL、WS-...

    图床 类似 七牛 restful + cxf + springmvc + webservice

    在我们的图床项目中,CXF可以帮助我们实现webservice接口,允许外部系统通过标准的Web服务协议与图床进行交互,如上传、下载图片等操作。 Spring MVC是Spring框架的一部分,专门用于构建Web应用的MVC(Model-View-...

    CXF+Jetty发布WebService

    本篇文章将深入探讨如何利用CXF和Jetty来发布一个完整的WebService。 一、CXF简介 Apache CXF是一个强大的Web服务框架,支持多种Web服务标准,如SOAP、RESTful、WS-*等。它提供了丰富的API和工具,简化了Web服务的...

    springboot+cxf实现webservice示例

    springboot+cxf实现webservice示例 &lt;groupId&gt;org.springframework.boot &lt;artifactId&gt;spring-boot-starter &lt;groupId&gt;org.springframework.boot &lt;artifactId&gt;spring-boot-starter-web &lt;!-- CXF ...

    cxf+spring开发webservice实例(java)

    web项目使用spring和cxf的一个开发实例,有简单的代码样例和jar。是一个完整的项目,最终发布完成时访问 http://ip:port/项目名称/webservices/ 就会发现你发布的webservice服务。

    cxf+spring+tomcat

    【标签】"webservice"表明我们关注的是基于标准的、平台无关的通信方式,即Web服务。Web服务允许不同的系统之间通过网络交换数据,遵循如SOAP(简单对象访问协议)和WSDL(Web服务描述语言)等标准。 详细知识点...

    webservice动态访问天气预报(tomcat+jsp+servlet+webservice+cxf)

    【标题】"webservice动态访问天气预报(tomcat+jsp+servlet+webservice+cxf)"涉及的关键技术栈包括Web服务、服务器管理、前端交互等多个方面。本文将深入探讨这些技术在实现动态天气预报功能中的应用。 【描述】中...

    CXF+Tomat发布WebService

    【CXF+Tomcat发布WebService】是Web服务开发中一种常见的技术组合,它允许开发者在不依赖Spring框架的情况下创建和部署SOAP或RESTful Web服务。CXF是一个开源的Java框架,它提供了丰富的功能来实现服务导向架构(SOA...

    CXF+Spring+自定义拦截器 WebService实例源码下载

    这里少了一个类,是根据实体类生成xml的文件下载地址为:http://download.csdn.net/detail/qq_14996421/9495688

Global site tag (gtag.js) - Google Analytics