ylz外网连接ESB流程

先在指定目录下写Controller,在目录下com.ylzinfo.controller.zhizhi

package com.ylzinfo.controller.zhizhi;

import java.util.Map;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

import com.ylzinfo.util.AjaxPageResponse;
import com.ylzinfo.util.ESBService;
import com.ylzinfo.util.EsbUtil;
import com.ylzinfo.util.UnitUser;
import com.ylzinfo.util.UserHelper;



/**
 * @Description: 用于老师管理测试
 * @author: shengzhizhi
 * @modifier:
 * @date: 2018年7月12日 上午10:38:53
 */
@RequestMapping("/unit/zhizhi/lsgl")
@Controller
public class LsglController {
    private static Logger logger = LoggerFactory.getLogger(LsglController.class);
    
    /**
     * @Description: 返回老师list
     * @author: shengzhizhi
     * @modifier:
     * @date: 2018年7月12日 上午10:43:20
     */
    @RequestMapping(value = "/list", method = RequestMethod.GET)
    public String getList(Model model) {
        return "zhizhi/lsgl/list";
    }
    
    @RequestMapping(value="/query",method =RequestMethod.POST)
    @ResponseBody
    public AjaxPageResponse getquery(@RequestBody Map param){//param 把前端的数据传入
        UnitUser user =  (UnitUser)UserHelper.currentUser();
        param.put("employUnit", user.getId());//每条都要,用于记录都哪些人操作了
        return EsbUtil.call(ESBService.Zhizhi.QUERYLIST, param);//param传入数据
    }
    
}

 

 

然后在ESBServicece里面写好地址

 public static class Zhizhi{
        public final static String QUERYLIST = "com.ylzinfo.rsrc.ggfw.zhizhi.queryLsglList";
    } //在ESB Service里面加入服务编号 在ESB网址服务上配置

 

 

ESB配置  地址 http://10.97.141.19/esbos/ 账号worker密码123

ylz外网连接ESB流程_第1张图片

ylz外网连接ESB流程_第2张图片参数配置都是 data data 1 string in ,加载完后要内存加载一次,测试的时候可以直接用{}来测试内容

 

在jsp目录底下找到index 打开之后再里面加入对瓶的地址

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
<%@include file="/WEB-INF/jsp/common/taglibs.jspf" %>
DOCTYPE html>
<html>
<head lang="en">
    <base:meta/>
    <title>人事人才公共服务-单位主页title>
    
    <link type="text/css" rel="stylesheet" href="${ctx}/assets/plugins/layer-v2.4/skin/layer.css"/>
    
    <link type="text/css" rel="stylesheet" href="${ctx}/assets/plugins/zTree_v3-master/css/zTreeStyle/zTreeStyle.css"/>
    
    <link type="text/css" rel="stylesheet" href="${ctx}/assets/font/iconfont.css"/>
    <link type="text/css" rel="stylesheet" href="${ctx}/assets/font/font-awesome.css"/>
    
    <link type="text/css" rel="stylesheet" href="${ctx}/assets/css/common.css"/>
    
    <link type="text/css" rel="stylesheet" href="${ctx}/assets/css/ggfwkj.css"/>
head>
<body>
<div class="index">
    
    <div class="left">
        <div class="left-nav" id="left-nav">
            <ul id="treeDemo" class="ztree">ul>
        div>
        
        <div class="shrink">div>
        
    div>
    
    
    <div class="page-wrapper">
        
        <div class="content-tabs">
            <button class="roll-nav roll-left">
                <i class="iconfont icon-ttpodicon">i>
            button>
            <div class="page-tabs">
                <a href="javascript:" class="J_menuTab active" data-id="daas">首页a>
            div>
            <button class="roll-nav roll-right J_tabRight">
                <i class="iconfont icon-next">i>
            button>
            <div class="roll-nav roll-right btn-group" id="other_operation">
                <button class="closeopers">
                    其他操作<i class="iconfont icon-down">i>
                button>
                <ul class="dropdown-menu-right">
                    <li class="J_tabRefreshActive"><a>刷新当前选项卡a>li>
                    <li class="J_tabShowActive"><a>定位当前选项卡a>li>
                    <li class="divider">li>
                    <li class="J_tabCloseAll"><a>关闭全部选项卡a>li>
                    <li class="J_tabCloseOther"><a>关闭其他选项卡a>li>
                ul>
            div>
        div>
        
        <div class="page-content">
            
            <iframe class="J_iframe" src="" width="100%" height="100%" frameborder="0" data-id="daas">iframe>
        div>
        
    div>
div>

<script type="text/javascript" src="${ctx}/assets/js/jquery-1.12.3.min.js">script>

<script type="text/javascript" src="${ctx}/assets/plugins/layer-v2.4/layer.js">script>

<script type="text/javascript" src="${ctx}/assets/plugins/zTree_v3-master/js/jquery.ztree.core.min.js">script>
<script type="text/javascript" src="${ctx}/assets/data/data.js">script>
<script type="text/javascript" src="${ctx}/assets/js/ggfwkj.js">script>
<script type="text/javascript">
    $(function () {
        var zNodes1 = [
            {
                id: 1, pId: 0, name: "需求管理", open: false, iconSkin: "icon-shouyeshouye2", children: [
                {id: 11, pId: 1, name: "平时需求", "url": "${ctx}/unit/psxqgl/list", "target": "main"},
                {id: 12, pId: 1, name: "年度需求", "url": "${ctx}/unit/ndxqgl/list", "target": "main"}
            ]
            },
            {
                id: 13, pId: 0, name: "智智TEST", open: false, iconSkin: "iconfont icon-shouyeshouye2", children: [
                {id: 131, pId: 13, name: "老师管理", "url": "${ctx}/unit/zhizhi/lsgl/list", "target": "main"}//在这里加入
               
            ]
            },
            {
                id: 2, pId: 0, name: "毕业生接收", open: false, iconSkin: "iconfont icon-shouyeshouye2", children: [
                {id: 21, pId: 2, name: "毕业生申报", "url": "${ctx}/unit/bysjs/bys/list", "target": "main"},
                <%-- {id:22, pId:2,name:"企业骨干申报","url":"${ctx}/unit/bysjs/qygg/list","target":"main"}, --%>
                <%--  {id:23, pId:2,name:"凭劳动合同申报","url":"${ctx}/unit/bysjs/ldht/editnew","target":"main"}, --%>
                {id: 24, pId: 2, name: "我的申报进度", "url": "${ctx}/user/bysjs/sbjd/list", "target": "main"},
            ]
            },
            {
                id: 3, pId: 0, name: "人才确认及住房补贴", open: false, iconSkin: "iconfont icon-shouyeshouye2", children: [
                {id: 30, pId: 3, name: "申报须知","url":"${ctx}/unit/zfbt/sbxz","target":"main"},                                                                                                 
                {id: 31, pId: 3, name: "人才类型申报操作指南","url":"${ctx}/unit/zfbt/sbzn","target":"main"},
                {id: 32, pId: 3, name: "单位基本信息", "url": "${ctx}/unit/zfbt/company", "target": "main"},
                {id: 33, pId: 3, name: "人才类型确认申报", "url": "${ctx}/unit/zfbt/sfqr/list", "target": "main"},
                {id: 34, pId: 3, name: "人才类型确认审核", "url": "${ctx}/unit/zfbt/sfqr/approvallist", "target": "main"},
                {id: 35, pId: 3, name: "人才类型审核记录", "url": "${ctx}/unit/zfbt/sfqr/approvalrecord", "target": "main"},
                {id: 36, pId: 3, name: "住房补贴申报操作指南","url":"${ctx}/unit/zfbt/zfbtsbzn","target":"main"},
                {id: 37, pId: 3, name: "人才住房补贴申报", "url": "${ctx}/unit/zfbt/btsq/apply", "target": "main"},
                {id: 38, pId: 3, name: "人才住房补贴审核", "url": "${ctx}/unit/zfbt/btsq/audit/list", "target": "main"},
                {id: 39, pId: 3, name: "住房补贴审核记录", "url": "${ctx}/unit/zfbt/btsq/applyrecord", "target": "main"}
            ]
            },{
                id: 5, pId: 0, name: "台湾实习见习", open: false, iconSkin: "iconfont icon-shouyeshouye2", children: [
                {id: 51, pId: 5, name: "台湾见习岗位申报", "url": "${ctx}/unit/twsxjx/jxgwsb/list", "target": "main"},
                {id: 52, pId: 5, name: "台湾实习见习人员申报(单位)", "url": "${ctx}/unit/twsxjx/jxrysb/list", "target": "main"},
                {id: 53, pId: 5, name: "台湾实习见习人员补贴申报", "url": "${ctx}/unit/twsxjx/jxbtsb/dwpcList", "target": "main"}
                /* ,{id:54, pId:5,name:"台湾实习见习人员投保","url":"${ctx}/unit/twsxjx/jxrytb/list","target":"main"}*/
                ]
             },
            {
                id: 4, pId: 0, name: "职业见习", open: false, iconSkin: "iconfont icon-shouyeshouye2", children: [
                {id: 41, pId: 4, name: "见习岗位申报", "url": "${ctx}/unit/zyjx/jxgwsb/list", "target": "main"},
                {id: 42, pId: 4, name: "见习人员申报(单位)", "url": "${ctx}/unit/zyjx/jxrysb/list", "target": "main"}
                , {id: 43, pId: 4, name: "见习人员投保(保险公司)", "url": "${ctx}/insurance/zyjx/jxrytb/list", "target": "main"}
            ]
            },
            {
                id: 12, pId: 0, name: "人力资源机构年度验证", open: false, iconSkin: "iconfont icon-shouyeshouye2", children: [
                {id: 121, pId: 12, name: "年度验证申报指南", "url": "${ctx}/unit/ndyz/czzn", "target": "main"},
                {id: 122, pId: 12, name: "年度验证申报", "url": "${ctx}/unit/ndyz/list", "target": "main"}
            ]
            },
            {
                id: 6, pId: 0, name: "继续教育", open: false, iconSkin: "iconfont icon-shouyeshouye2", children: [
                {id: 81, pId: 6, name: "继续教育指南", "url": "${ctx}/unit/jxjy/cxry00/jxjyzn", "target": "main"},
                {id: 61, pId: 6, name: "计划报备", "url": "${ctx}/unit/jxjy/pxjhbb/list", "target": "main"},
                <%-- {id:62, pId:6,name:"计划培训内容管理","url":"${ctx}/unit/jxjy/jhpxnr/list","target":"main"}, --%>
                {id: 63, pId: 6, name: "办班管理", "url": "${ctx}/unit/jxjy/jhpxnr/list2", "target": "main"},
                /* {id:61, pId:6,name:"公共课报备","url":"${ctx}/unit/jxjy/pxjhbb/list","target":"main"},
                 {id:63, pId:6,name:"公共课学时确认","url":"${ctx}/unit/jxjy/jhpxnr/list2","target":"main"}, */
                {id: 64, pId: 6, name: "学时确认", "url": "${ctx}/unit/jxjy/qtxsqr/list", "target": "main"},
                {id: 65, pId: 6, name: "学时验证", "url": "${ctx}/unit/jxjy/xsyzxx/list", "target": "main"},
                {id: 66, pId: 6, name: "人员资料审核", "url": "${ctx}/unit/jxjy/ryzlsh/list", "target": "main"},
                {id: 67, pId: 6, name: "专技职务审核", "url": "${ctx}/unit/jxjy/zjzwsh/list", "target": "main"}
            ]
            },
            {
                id: 7, pId: 0, name: "干部调动", open: false, iconSkin: "iconfont icon-shouyeshouye2", children: [
                {id: 71, pId: 7, name: "干部调动申报(单位)", "url": "${ctx}/unit/gbdd/gbddsb/list", "target": "main"}
            ]
            },
            {
                id: 8, pId: 0, name: "新引进人才生活补贴", open: false, iconSkin: "iconfont icon-shouyeshouye2", children: [
                {id: 81, pId: 8, name: "申报操作指南", "url": "${ctx}/unit/shbt/shbtrysb/sbzn", "target": "main"},
                {id: 82, pId: 8, name: "单位基本信息", "url": "${ctx}/unit/shbt/shbtrysb/company", "target": "main"},
                {id: 83, pId: 8, name: "补贴人员申报", "url": "${ctx}/unit/shbt/shbtrysb/list", "target": "main"},
            ]
            },
            {
                id: 9, pId: 0, name: "人事代理", open: false, iconSkin: "iconfont icon-shouyeshouye2", children: [
                {id: 91, pId: 9, name: "代理", "url": "${ctx}/unit/rsdl/rsdl", "target": "main"},
                {id: 92, pId: 9, name: "解约", "url": "${ctx}/unit/rsdl/rsjy", "target": "main"}
            ]
            }, {
                id: 10, pId: 0, name: "干部调动(机关系统)", open: false, iconSkin: "iconfont icon-shouyeshouye2", children: [
                    {id: 101, pId: 10, name: "工作人员流动", "url": "${ctx}/unit/bcbnry/bcbnrysb/list", "target": "main"}
                ]
            }, {
                id: 11, pId: 0, name: "台湾特聘专家", open: false, iconSkin: "iconfont icon-shouyeshouye2", children: [
                    {id: 111, pId: 11, name: "单位信息设置", "url": "${ctx}/unit/twtpzj/dwxx", "target": "main"},
                    {id: 112, pId: 11, name: "特聘专家申报", "url": "${ctx}/unit/twtpzj/tpzjsb", "target": "main"},
                    {id: 113, pId: 11, name: "岗位需求申报", "url": "${ctx}/unit/twtpzj/gwxqsb"}
                ]
            }
        ];
        loadleftnav('treeDemo', '', zNodes1);
    });
script>
body>
html>

 

 

之后在对应的jsp目录底下加入文件list(用于query),前端用的框架不一样,用的BOOTSTRAP(只要看query,因为只做了这个测试)

<%--
  Created by IntelliJ IDEA.
  Description: 单位台湾专家申报列表
  User: hexp
  Date: 2018/01/18
  Time: 10:41
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@include file="/WEB-INF/jsp/common/taglibs.jspf" %>
DOCTYPE html>
<html>
<head>
    <base:meta/>
    <base:base/>
head>
<body>
<div class="wrapper-content">
    <div class="box">
        <div class="box-header with-border">
            <div class="form-horizontal form-search" id="form">
                <div class="form-group form-group-sm">
                    
                    <label class="span1-5 control-label">姓名:label>
                    <div class="span2-5">
                        <input type="text" id="name" class="form-control">
                    div>
                div>
                <div class="form-group form-group-sm">
                    <label class="span1-5 control-label">性别:label>
                    <div class="span2-5">
                        <syscode:sysCode sysCode="discounttype" type="select" id="sex" cssclass="form-control selectpicker"/>
                    div>
                    <label class="span1-5 control-label">地址:label>
                    <div class="span2-5">
                        <syscode:sysCode sysCode="dw_state" type="select" id="address" cssclass="form-control selectpicker"/>
                    div>
                    
                div>
                <div class="form-btn">
                    <button type="submit" class="btn btn-primary" id="searchButton">
                        <i class="iconfont icon-sousuo-sousuo">i>搜索
                    button>
                    <button type="reset" class="btn btn-default" id="resetButton">
                        <i class="iconfont icon-reset">i>重置
                    button>
                div>
            div>
        div>
        <div class="box-body">
            <div class="btn-group-sm" id="myop">
                <button id="btn-add" type="button" class="btn btn-success">
                    <i class="iconfont icon-xinzeng-copy">i>申报
                button>
                <button id="btn-edit" type="button" class="btn btn-primary">
                    <i class="iconfont icon-bianji">i>修改
                button>
                <button id="btn-report" type="button" class="btn btn-info">
                    <i class="iconfont icon-up ">i>上报
                button>
                <button id="btn-unreport" type="button" class="btn btn-info">
                    <i class="iconfont icon-quxiao">i>撤销上报
                button>
                <button id="btn-delete" type="button" class="btn btn-warning">
                    <i class="iconfont icon-shanchu">i>删除
                button>
                <button id="btn-print" type="button" class="btn btn-primary">
                    <i class="iconfont icon-207">i>打印
                button>
            div>
            <table id="table">table>
        div>
    div>
div>
<script>
    $(function(){
        $table = $('#table').bootstrapTable({
            height: 'auto',
            dataField: "data",
            url: ctx + "/unit/zhizhi/lsgl/query",
            striped: true,    //是否显示行间隔色
            cache: false,     //是否使用缓存,默认为true,所以一般情况下需要设置一下这个属性(*)
            singleSelect: false,//是否单选
            clickToSelect: true,//是否启用点击选中行
            showToggle: true, //是否显示详细视图和列表视图的切换按钮
            cardView: false, //是否显示详细视图
            showRefresh: true, //是否显示刷新按钮
            undefinedText: '',//当数据为 undefined 时显示的字符
            pagination: true,  //开启分页
            sidePagination: 'server',//服务器端分页
            queryParamsType: '',//分页参数类型,默认为limit(参数即为limit、offset),此处设置为空(参数即为pageNumber、pageSize)
            pageNumber: 1,//默认加载页
            pageSize: 10,//每页数据
            pageList: [10, 20, 50],//可选的每页数据
            toolbar: '#myop',
            method: 'post',
            sortName: 'state',
            queryParams: function (params) {
     
                params.name = $('#name').val();
                params.sex = $('#sex').val();
                params.address = $('#address').val();
             
                return params;
            },//请求服务器数据时的参数
            columns: [{
                field: 'checkbox',
                checkbox: true,
                width: 20
            },{
                field: 'name',
                title: '姓名',
                width: 60,
                halign: 'center',//表格居中
                align: 'left',//数据的对齐方式
                sortable: 'true'
            }, {
                field: 'sex',
                title: '性别',
                width: 20,
                halign: 'center',//表格居中
                align: 'center',//数据的对齐方式
                sortable: 'true',
                  code:'aac004'
            }, {
                field: 'address',
                title: '地址',
                width: 50,
                align: 'center',
                sortable: 'true'
            }]
        });
        $(window).resize(function () {
            $table.bootstrapTable('resetView', {
                height: 'auto'
            });
        });

        //查询
        $("#searchButton").click(function () {
            $table.bootstrapTable("refresh");
        });
        //重置
        $("#resetButton").click(function () {
            $("#form").find("input").each(function () {
                $(this).val("");
            });
            $("#form").find("select").each(function () {
                $(this).val("");
            })
        });
        /**
         * 申报
         */
        $("#btn-add").click(function () {
            var index = layer.open({
                type: 2 //Page层类型
                , area: ['90%', '90%']
                , maxmin: true
                , title: '台湾特聘专家申报'
                , shade: 0.6 //遮罩透明度
                , maxmin: true //允许全屏最小化
                , anim: 1 //0-6的动画形式,-1不开启
                , content: ctx + "/unit/twtpzj/tpzjsb/add"
                ,end : function() {
                    $table.bootstrapTable("refresh");
                }
            });
            layer.full(index);
        });
        /**
         * 修改
         */
        $("#btn-edit").click(function () {
            var row = $table.bootstrapTable("getSelections");
            if (row.length !=1) {
                layer.msg("请选择要修改的数据",{icon:5});
                return;
            }
            var index = layer.open({
                type: 2 //Page层类型
                , area: ['90%', '90%']
                , maxmin: true
                , title: '台湾特聘专家申报'
                , shade: 0.6 //遮罩透明度
                , maxmin: true //允许全屏最小化
                , anim: 1 //0-6的动画形式,-1不开启
                , content: ctx + "/unit/twtpzj/tpzjsb/add?id="+row[0].id
                ,end : function() {
                    $table.bootstrapTable("refresh");
                }
            });
            layer.full(index);
        });
        /**
         * 上报
         */
        $("#btn-report").click(function () {
            var row = $table.bootstrapTable("getSelections");
            if (row.length < 1) {
                layer.msg("请选择要上报的数据",{icon:5});
                return;
            }
            var ids = [];
            for(var i=0;i<row.length;i++){
                ids.push(row[i].id);
            }
            $.post(ctx+"/unit/twtpzj/tpzjsb/report",{"ids":ids.join(",")},function(data){
                if (data.code ==GlobalConst.SUCCESS) {
                    layer.msg(data.message,{icon:1},function () {
                        $table.bootstrapTable("refresh");
                    });
                }else{
                    layer.msg(data.message,{icon:5});
                }
            },"json");
        });
        /**
         * 撤销上报
         */
        $("#btn-unreport").click(function () {
            var row = $table.bootstrapTable("getSelections");
            if (row.length < 1) {
                layer.msg("请选择要撤销上报的数据",{icon:5});
                return;
            }
            var ids = [];
            for(var i=0;i<row.length;i++){
                ids.push(row[i].id);
            }
            $.post(ctx+"/unit/twtpzj/tpzjsb/unreport",{"ids":ids.join(",")},function(data){
                if (data.code ==GlobalConst.SUCCESS) {
                    layer.msg(data.message,{icon:1},function(){
                        $table.bootstrapTable("refresh");
                    });
                }else{
                    layer.msg(data.message,{icon:5});
                }
            },"json");
        });
        /**
         * 删除
         */
        $("#btn-delete").click(function(){
            var row = $table.bootstrapTable("getSelections");
            if (row.length < 1) {
                layer.msg("请选择要删除的数据",{icon:5});
                return;
            }
            var ids = [];
            for(var i=0;i<row.length;i++){
                ids.push(row[i].id);
            }
            layer.confirm("只能删除未上报数据,确认是否删除?",function () {
                $.post(ctx+"/unit/twtpzj/tpzjsb/delte",{"ids":ids.join(",")},function(data){
                    if (data.code ==GlobalConst.SUCCESS) {
                        layer.msg(data.message,{icon:1},function () {
                            $table.bootstrapTable("refresh");
                        });
                    }else{
                        layer.msg(data.message,{icon:5});
                    }
                },"json");
            })
        });
        /**
         * 打印
         */
        $("#btn-print").click(function () {
            var row = $table.bootstrapTable("getSelections");
            if (row.length < 1) {
                layer.msg("请选择要打印的数据",{icon:5});
                return;
            }
            var index = layer.open({
                type: 2 //Page层类型
                , area: ['90%', '90%']
                , maxmin: true
                , title: '台湾特聘专家申报'
                , shade: 0.6 //遮罩透明度
                , maxmin: true //允许全屏最小化
                , anim: 1 //0-6的动画形式,-1不开启
                , content: ctx + "/unit/twtpzj/tpzjsb/print?id="+row[0].id
                ,end : function() {
                    $table.bootstrapTable("refresh");
                }
            });
            layer.full(index);
        });
    });
script>
body>
html>

 

 

 

之后去内网工程配置,在FramWork WebService底下加入Service就可以,注意名字写法已经规定好,还需要在services

.xml里面加入配置(注意名字)

 <service name="LsglWebService" targetNamespace="http://www.ylzinfo.com">    
        <description>老师管理description>
        
        <parameter name="ServiceObjectSupplier">
            org.apache.axis2.extensions.spring.receivers.SpringAppContextAwareObjectSupplier
        parameter>
        <schema schemaNamespace="http://www.ylzinfo.com"/>
        
        <parameter name="SpringBeanName">LsglWebServiceparameter>
        
        <messageReceivers>
            <messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-only" class="org.apache.axis2.rpc.receivers.RPCInOnlyMessageReceiver"/>
            <messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-out" class="org.apache.axis2.rpc.receivers.RPCMessageReceiver"/>
        messageReceivers>
    service>

 

package com.ylzinfo.framework.webservice.zhizhi;
/**
 * @Description: 
 * @author: shengzhizhi
 * @modifier:
 * @date: 2018年7月12日 下午1:41:57
 */
public interface LsglWebService {
  String query(String data);
}
package com.ylzinfo.framework.webservice.zhizhi.imp;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.ylzinfo.apps.zhizhi.lsgl.domain.Lsgl_teacher;
import com.ylzinfo.apps.zhizhi.lsgl.service.LsglService;
import com.ylzinfo.eva.core.web.validate.AjaxPageResponse;
import com.ylzinfo.framework.webservice.zhizhi.LsglWebService;

/**
 * @Description:
 * @author: shengzhizhi
 * @modifier:
 * @date: 2018年7月12日 下午1:43:16
 */
@Service("LsglWebService")
public class LsglWebServiceImpl implements LsglWebService {
    private static final Logger logger = LoggerFactory.getLogger(LsglWebServiceImpl.class);
    @Autowired
    private LsglService lsglService;

    @Override
    public String query(String data) {
        AjaxPageResponse pageResponse = JSONObject.parseObject(data, AjaxPageResponse.class);
        logger.debug(pageResponse.toString());
        try {
        Lsgl_teacher teacher =  JSONObject.parseObject(data, Lsgl_teacher.class);
        lsglService.query(teacher, pageResponse);
        } catch (Exception e) {
            logger.error("系统异常",e);
            pageResponse.fail("出现异常");
        }
        
        return JSON.toJSONString(pageResponse);
    }

}

去测试

转载于:https://www.cnblogs.com/s1127736971/p/9300916.html

你可能感兴趣的:(ylz外网连接ESB流程)