zoukankan      html  css  js  c++  java
  • javaWeb服务详解【客户端调用】(含源代码,测试通过,注释) ——DeptService层

    package org.service;
    
    import javax.jws.WebMethod;
    import javax.jws.WebResult;
    import javax.jws.WebService;
    import javax.xml.ws.RequestWrapper;
    import javax.xml.ws.ResponseWrapper;
    
    import org.entity.Dept;
    
    /**
     * This class was generated by Apache CXF 2.7.18
     * 2017-06-02T13:18:24.417+08:00
     * Generated source version: 2.7.18
     * 
     */
    @WebService(targetNamespace = "http://www.xiongxiong.cn.ws/dept", name = "IDeptService")
    public interface IDeptService {
    
        @WebResult(name = "return", targetNamespace = "")
        @RequestWrapper(localName = "getDepts", targetNamespace = "http://www.xiongxiong.cn.ws/dept", className = "ws.cn.xiongxiong.dept.GetDepts")
        @WebMethod
        @ResponseWrapper(localName = "getDeptsResponse", targetNamespace = "http://www.xiongxiong.cn.ws/dept", className = "ws.cn.xiongxiong.dept.GetDeptsResponse")
        public java.util.List<Dept> getDepts();
    }
    

  • 相关阅读:
    设计模式 设计原则 何为设计
    面向对象 多态
    两个简易的对拍程序
    各类有用的神奇网站
    乘法逆元
    树链剖分
    Markdown的用法
    vimrc 的配置
    luogu【P1144】最短路计数
    【娱乐】收录各种神奇知乎问答
  • 原文地址:https://www.cnblogs.com/a1111/p/7459657.html
Copyright © 2011-2022 走看看