一、使用cxf的JaxWsServerFactoryBean创建webservice的服务端和客户端

本文主要是介绍一、使用cxf的JaxWsServerFactoryBean创建webservice的服务端和客户端,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

A。创建服务端

配置文件:


import com.enn.cn.util.PropertiesUtil;
import org.apache.cxf.jaxws.JaxWsServerFactoryBean;/*** Created by Administrator on 2017/10/30.*/
public class ExecServer {public static void main(String[] args) {try {PropertiesUtil util=new PropertiesUtil("/config.properties");JaxWsServerFactoryBean bean = new JaxWsServerFactoryBean();bean.setAddress(util.getProperty("deployAddress"));bean.setServiceClass(GetHbaseDate.class);bean.setServiceBean(new GetHbaseDateImpl());bean.create();System.err.println("服务启动成功");
//            gethbaseall("2011",1476054000000L,1509325844000L);} catch (Exception e) {e.printStackTrace();}}
}
接口类:
import javax.jws.WebService;/*** Created by Administrator on 2017/10/30.*/
@WebService
public interface GetHbaseDate {String GetPipeposition(String userid,long startStr, long endStr);
}

实现类:

import com.enn.cn.trail.MongPosition;
import com.enn.cn.util.CommonContent;
import com.enn.cn.util.HBaseUtil;
import com.enn.cn.util.KerberosUtil;
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hbase.Cell;
import org.apache.hadoop.hbase.client.Result;
import org.apache.hadoop.hbase.client.ResultScanner;
import org.apache.hadoop.hbase.client.Scan;
import org.apache.hadoop.hbase.client.Table;
import org.apache.hadoop.hbase.util.Bytes;import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;/*** Created by Administrator on 2017/10/30.*/
public class GetHbaseDateImpl implements GetHbaseDate {@Overridepublic String GetPipeposition(String userid, long startStr, long endStr) {
          
System.out.println(
userid
);
}

客户端生成,生产完之后删除.class文件,拷贝.java文件到指定目录:

——你看不懂 ,JDK看得懂,wsimportJDK自带的,可以根据WSDL文档生成客户端调用代码的工具。无论服务器端WebService使用什么语言编写的,豆浆在客户端生成Java代码。所以服务器用什么语言编写的并不重要。

wsimport.exe(jdk/bin文件夹中)命令参数熟知:

    -d:生成class文件。默认参数。

    -s:生成Java文件

   -p:自定义包结构

 

生成文件到指定盘:

WSDL文件内容:
 
<wsdl:definitions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://interfaces.cn.enn.com/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"xmlns:ns1="http://schemas.xmlsoap.org/soap/http" name="GetHbaseDateService" targetNamespace="http://interfaces.cn.enn.com/">
<wsdl:types>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://interfaces.cn.enn.com/" elementFormDefault="unqualified" targetNamespace="http://interfaces.cn.enn.com/" version="1.0">
<xs:element name="GetPipeposition" type="tns:GetPipeposition"/>
<xs:element name="GetPipepositionResponse" type="tns:GetPipepositionResponse"/>
<xs:complexType name="GetPipeposition">
<xs:sequence>
<xs:element minOccurs="0" name="arg0" type="xs:string"/>
<xs:element name="arg1" type="xs:long"/>
<xs:element name="arg2" type="xs:long"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="GetPipepositionResponse">
<xs:sequence>
<xs:element minOccurs="0" name="return" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:schema>
</wsdl:types>
<wsdl:message name="GetPipeposition">
<wsdl:part element="tns:GetPipeposition" name="parameters"></wsdl:part>
</wsdl:message>
<wsdl:message name="GetPipepositionResponse">
<wsdl:part element="tns:GetPipepositionResponse" name="parameters"></wsdl:part>
</wsdl:message>
<wsdl:portType name="GetHbaseDate">
<wsdl:operation name="GetPipeposition">
<wsdl:input message="tns:GetPipeposition" name="GetPipeposition"></wsdl:input>
<wsdl:output message="tns:GetPipepositionResponse" name="GetPipepositionResponse"></wsdl:output>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="GetHbaseDateServiceSoapBinding" type="tns:GetHbaseDate">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="GetPipeposition">
<soap:operation soapAction="" style="document"/>
<wsdl:input name="GetPipeposition">
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output name="GetPipepositionResponse">
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="GetHbaseDateService">
<wsdl:port binding="tns:GetHbaseDateServiceSoapBinding" name="GetHbaseDatePort">
<soap:address location="http://10.11.85.137:8080/getpipepositions"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
客户端调用服务端:
public class Client {public static void main(String[] args) {/* URL wsdlUrl = new URL("http://localhost:8080/getpipepositions?wsdl");
            Service s = Service.create(wsdlUrl, new QName("http://interfaces.cn.enn.com/","GetHbaseDateService"));
            GetHbaseDate hs = s.getPort(new QName("http://interfaces.cn.enn.com/","GetHbaseDatePort"), GetHbaseDate.class);
            String res=hs.GetPipeposition("2011",1476054000000L,1509325844000L);
            System.out.println(res);*/
            GetHbaseDateService sd=new GetHbaseDateService();
            com.enn.cn.interfaces.client.GetHbaseDate fs=sd.getGetHbaseDatePort();
            String res=fs.getPipeposition("2011",1476054000000L,1509325844000L);
        System.out.println(res);
    }
}


这篇关于一、使用cxf的JaxWsServerFactoryBean创建webservice的服务端和客户端的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1083728

相关文章

中文分词jieba库的使用与实景应用(一)

知识星球:https://articles.zsxq.com/id_fxvgc803qmr2.html 目录 一.定义: 精确模式(默认模式): 全模式: 搜索引擎模式: paddle 模式(基于深度学习的分词模式): 二 自定义词典 三.文本解析   调整词出现的频率 四. 关键词提取 A. 基于TF-IDF算法的关键词提取 B. 基于TextRank算法的关键词提取

使用SecondaryNameNode恢复NameNode的数据

1)需求: NameNode进程挂了并且存储的数据也丢失了,如何恢复NameNode 此种方式恢复的数据可能存在小部分数据的丢失。 2)故障模拟 (1)kill -9 NameNode进程 [lytfly@hadoop102 current]$ kill -9 19886 (2)删除NameNode存储的数据(/opt/module/hadoop-3.1.4/data/tmp/dfs/na

Hadoop数据压缩使用介绍

一、压缩原则 (1)运算密集型的Job,少用压缩 (2)IO密集型的Job,多用压缩 二、压缩算法比较 三、压缩位置选择 四、压缩参数配置 1)为了支持多种压缩/解压缩算法,Hadoop引入了编码/解码器 2)要在Hadoop中启用压缩,可以配置如下参数

Makefile简明使用教程

文章目录 规则makefile文件的基本语法:加在命令前的特殊符号:.PHONY伪目标: Makefilev1 直观写法v2 加上中间过程v3 伪目标v4 变量 make 选项-f-n-C Make 是一种流行的构建工具,常用于将源代码转换成可执行文件或者其他形式的输出文件(如库文件、文档等)。Make 可以自动化地执行编译、链接等一系列操作。 规则 makefile文件

使用opencv优化图片(画面变清晰)

文章目录 需求影响照片清晰度的因素 实现降噪测试代码 锐化空间锐化Unsharp Masking频率域锐化对比测试 对比度增强常用算法对比测试 需求 对图像进行优化,使其看起来更清晰,同时保持尺寸不变,通常涉及到图像处理技术如锐化、降噪、对比度增强等 影响照片清晰度的因素 影响照片清晰度的因素有很多,主要可以从以下几个方面来分析 1. 拍摄设备 相机传感器:相机传

【Python编程】Linux创建虚拟环境并配置与notebook相连接

1.创建 使用 venv 创建虚拟环境。例如,在当前目录下创建一个名为 myenv 的虚拟环境: python3 -m venv myenv 2.激活 激活虚拟环境使其成为当前终端会话的活动环境。运行: source myenv/bin/activate 3.与notebook连接 在虚拟环境中,使用 pip 安装 Jupyter 和 ipykernel: pip instal

pdfmake生成pdf的使用

实际项目中有时会有根据填写的表单数据或者其他格式的数据,将数据自动填充到pdf文件中根据固定模板生成pdf文件的需求 文章目录 利用pdfmake生成pdf文件1.下载安装pdfmake第三方包2.封装生成pdf文件的共用配置3.生成pdf文件的文件模板内容4.调用方法生成pdf 利用pdfmake生成pdf文件 1.下载安装pdfmake第三方包 npm i pdfma

零基础学习Redis(10) -- zset类型命令使用

zset是有序集合,内部除了存储元素外,还会存储一个score,存储在zset中的元素会按照score的大小升序排列,不同元素的score可以重复,score相同的元素会按照元素的字典序排列。 1. zset常用命令 1.1 zadd  zadd key [NX | XX] [GT | LT]   [CH] [INCR] score member [score member ...]

在cscode中通过maven创建java项目

在cscode中创建java项目 可以通过博客完成maven的导入 建立maven项目 使用快捷键 Ctrl + Shift + P 建立一个 Maven 项目 1 Ctrl + Shift + P 打开输入框2 输入 "> java create"3 选择 maven4 选择 No Archetype5 输入 域名6 输入项目名称7 建立一个文件目录存放项目,文件名一般为项目名8 确定

git使用的说明总结

Git使用说明 下载安装(下载地址) macOS: Git - Downloading macOS Windows: Git - Downloading Windows Linux/Unix: Git (git-scm.com) 创建新仓库 本地创建新仓库:创建新文件夹,进入文件夹目录,执行指令 git init ,用以创建新的git 克隆仓库 执行指令用以创建一个本地仓库的