博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
(九)easyUI之选项卡
阅读量:6278 次
发布时间:2019-06-22

本文共 2353 字,大约阅读时间需要 7 分钟。

  • 前台
  • <%@ page language="java" contentType="text/html; charset=UTF-8"    pageEncoding="UTF-8"%><%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%><%    String path = request.getContextPath();%>
    Insert title here
    tab1
    tab3

     

  • edit.jsp
    
用户id:
用户名:
密码:
  • servlet/treeGridData 该路径下的servlet
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {                request.setCharacterEncoding("UTF-8");        response.setCharacterEncoding("UTF-8");        response.setContentType("text/html");                PrintWriter out=response.getWriter();        String treeGrid_json="";        String sql="";        Connection conn=null;        try {            conn=DBUtil.getConn();            QueryRunner queryRunner=new QueryRunner();            sql="select * from dept";            List
> treeGridData=new ArrayList
>(); Map
deptMap=null; List
deptList=queryRunner.query(conn,sql,new BeanListHandler<>(Dept.class)); Map
> id_map=new HashMap
>(); for(Dept dept:deptList){ deptMap=new HashMap
(); deptMap.put("dept_id", dept.getDept_id()); deptMap.put("dept_name", dept.getDept_name()); deptMap.put("salary", dept.getSalary()); deptMap.put("address", dept.getAddress()); id_map.put(dept.getDept_id(), deptMap); if(dept.getGrade()>2){ deptMap.put("state", "closed"); } if(dept.getParent_id().equals("0")){ //如果是父节点,则直接添加到treeGridData中 treeGridData.add(deptMap); }else{ //如果是子节点 Map
parenMap=id_map.get(dept.getParent_id()); if (parenMap != null) { List
> children = null; if (parenMap.get("children") == null) { // 说明该父节点当前还没有一个子节点 children = new ArrayList
>(); } else { children = (List
>) parenMap.get("children"); } children.add(deptMap); parenMap.put("children", children); } } } Gson gson=new Gson(); treeGrid_json=gson.toJson(treeGridData); out.println(treeGrid_json); out.flush(); out.close(); } catch (Exception e) { e.printStackTrace(); } }
  • 结果

 

转载于:https://www.cnblogs.com/shyroke/p/7738009.html

你可能感兴趣的文章
切片键(Shard Keys)
查看>>
淘宝API-类目
查看>>
virtualbox 笔记
查看>>
Git 常用命令
查看>>
驰骋工作流引擎三种项目集成开发模式
查看>>
SUSE11修改主机名方法
查看>>
jdk6.0 + Tomcat6.0的简单jsp,Servlet,javabean的调试
查看>>
Android:apk签名
查看>>
2(2).选择排序_冒泡(双向循环链表)
查看>>
MySQL 索引 BST树、B树、B+树、B*树
查看>>
微信支付
查看>>
CodeBlocks中的OpenGL
查看>>
短址(short URL)
查看>>
第十三章 RememberMe——《跟我学Shiro》
查看>>
mysql 时间函数 时间戳转为日期
查看>>
索引失效 ORA-01502
查看>>
Oracle取月份,不带前面的0
查看>>
Linux Network Device Name issue
查看>>
IP地址的划分实例解答
查看>>
如何查看Linux命令源码
查看>>