• 使用wsimport生成客户端代码


    概述


    wsimport是jdk自带的命令,可以根据wsdl文档生成客户端中间代码,基于生成的代码编写客户端,可以省很多麻烦。

    wsimport命令


    wsimport的用法
    wsimport [options] <WSDL_URI>
    比较常用的[options]有:
    1. -d <directory>
       在指定的目录生成class文件
    2. -clientjar <jarfile>
       在当前目录生成jar文件,结合-d <directory>可以在指定的目录生成jar文件
    3. -s <directory>
       在指定的目录生成java源文件
    4. -p <pkg>
       指定生成文件的包结构
    5. -keep

       在生成class文件,或者jar包时,同时保留java源文件


    常用的组合

    1. 在指定的目录生成指定包结构的java源文件
      假设wsdl文档的uri为http://localhost:6666/service/interpret?wsdl,那么在F: emp下,生成包结构为cn.ljl.sand.jws.chapter3.client.wsimport的java源文件的命令为:

      wsimport -s F:	emp -p cn.ljl.sand.jws.chapter3.client.wsimport http://localhost:6666/service/interpret?wsdl
       
    2. 在指定的目录生成指定包结构的jar文件
      假设wsdl文档的uri为http://localhost:6666/service/interpret?wsdl,那么在F: emp下,生成包结构为cn.ljl.sand.jws.chapter3.client.wsimport的interpret-wsimport.jar的命令为:
      wsimport -d F:	emp -clientjar interpret-wsimport.jar -p cn.ljl.sand.jws.chapter3.client.wsimport http://localhost:6666/service/interpret?wsdl
    转载自:https://www.cnblogs.com/ywjy/p/5196064.html

  • 相关阅读:
    [模板] 循环数组的最大子段和
    [最短路][几何][牛客] [国庆集训派对1]-L-New Game
    [洛谷] P1866 编号
    1115 Counting Nodes in a BST (30 分)
    1106 Lowest Price in Supply Chain (25 分)
    1094 The Largest Generation (25 分)
    1090 Highest Price in Supply Chain (25 分)
    树的遍历
    1086 Tree Traversals Again (25 分)
    1079 Total Sales of Supply Chain (25 分 树
  • 原文地址:https://www.cnblogs.com/DiZhang/p/12545119.html
Copyright © 2020-2023  润新知