Springboot递归树(需求返回List树状结构数据)

一、本主的应用场景

    部门里面有一个属性是当前部门的上级部门,而当前部门又会有下级部门,下级部门还有下级部门,这就形成了一个向下无限循环,呈现出树状结构。

二、认识JSONObject

    JSONObject只是一种数据结构,可以理解为JSON格式的数据结构(key-value 结构),可以使用put方法给json对象添加元素。JSONObject可以很方便的转换成字符串,也可以很方便的把其他对象转换成JSONObject对象。

postman测试效果图

 

 建表(主键id自增长)


 

 Entity实体类

package com.example.unicom.entity;import lombok.Data;import java.util.ArrayList;
import java.util.List;@Data
public class RoleTree {private Integer id;private String role_name;private Integer parent_role_id;private List<RoleTree>trees =new ArrayList<>();
}

        Controller (GeneralResponse为自己添加的公共返回实体类,正式开发加,做练习可以不加)

package com.example.unicom.controller;import com.example.unicom.entity.RoleTree;
import com.example.unicom.entity.base.GeneralResponse;
import com.example.unicom.service.RoleTreeService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;import java.util.List;
/*** @author 孙翊轩* @since 2021-09-02*/
@RestController
@RequestMapping("/isp/unicom/roletree")
public class RoleTreeController {@Autowiredprivate RoleTreeService roleTreeService;@RequestMapping(value ="selectRoleTree",method = RequestMethod.GET)public GeneralResponse selectRoleTree(){try{List<RoleTree> roleTreeList=roleTreeService.selectRoleTree();return new GeneralResponse("SUCCESS","查询成功",roleTreeList);}catch (Exception e){e.printStackTrace();}return new GeneralResponse("FAIL","查询失败",null);}
}

Service接口 

package com.example.unicom.mapper;import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.example.unicom.entity.RoleTree;
import org.springframework.stereotype.Repository;import java.util.List;@Repository
public interface RoleTreeMapper extends BaseMapper<RoleTree> {List<RoleTree> selectRoleTree();
}

 @Service 业务层

package com.example.unicom.service.impl;import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.example.unicom.entity.RoleTree;
import com.example.unicom.entity.UserRole;
import com.example.unicom.mapper.RoleTreeMapper;
import com.example.unicom.mapper.UserRoleMapper;
import com.example.unicom.service.RoleTreeService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;import java.util.ArrayList;
import java.util.List;@Service
public class RoleTreeServiceImpl extends ServiceImpl<RoleTreeMapper,RoleTree>implements RoleTreeService{@Autowiredprivate RoleTreeMapper roleTreeMapper;@Autowiredprivate UserRoleMapper userRoleMapper;/*** 获取所有分类* @return*/@Overridepublic List<RoleTree> selectRoleTree() {List<RoleTree>roleTreeList=roleTreeMapper.selectRoleTree();List<UserRole>userRoleList=userRoleMapper.selectAll();//定义一个新的ListList<RoleTree>treeList=new ArrayList<>();//找到所有的一级分类for(RoleTree roleTree :roleTreeList){//一级菜单的parent_role_id是0if(roleTree.getParent_role_id()==0){treeList.add(roleTree);}}//为1级菜单设置子菜单for (RoleTree roleTree :treeList){roleTree.setTrees(getchilde(roleTree.getId(),roleTreeList));}return treeList;}/*** 递归查找子菜单* @param id 当前菜单id* @param rootList 要查找的列表*/private List<RoleTree>getchilde(Integer id,List<RoleTree>rootList){//子菜单的子菜单List<RoleTree>childList =new ArrayList<>();for (RoleTree roleTree :rootList){//遍历所有节点,将父菜单id与传过来的id比较if(roleTree.getParent_role_id().equals(id)){childList.add(roleTree);}}//将子菜单的子菜单再做循环for(RoleTree roleTree :childList){roleTree.setTrees(getchilde(roleTree.getId(),rootList));}//退出递归if (childList.size()==0){return null;}return childList;}
}

Mapper接口  

package com.example.unicom.service;import com.baomidou.mybatisplus.extension.service.IService;
import com.example.unicom.entity.RoleTree;import java.util.List;public interface RoleTreeService extends IService<RoleTree> {List<RoleTree> selectRoleTree();
}

Mapper .xml 映射 

 

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.example.unicom.mapper.UserRoleMapper"><select id="selectRoleTree" parameterType="com.example.unicom.entity.UserRole" resultType="com.example.unicom.entity.UserRole">SELECT user_role.user_id,user_role.user_name,user_role.jg_nameFROM user_role</select>
</mapper>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/419833.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

data-role参数表:

data-role参数表&#xff1a; data-role参数表&#xff1a; page 页面容器&#xff0c;其内部的mobile元素将会继承这个容器上所设置的属性 header 页面标题容器&#xff0c;这个容器内部可以包含文字、返回按钮、功能按钮等元素 footer 页面页脚容器&#x…

hubbledotnet mysql_HubbleDotNet 简介

系统简介HubbleDotNet 是一个基于.net framework 的开源免费的全文搜索数据库组件。开源协议是 Apache 2.0。HubbleDotNet提供了基于SQL的全文检索接口&#xff0c;使用者只需会操作SQL&#xff0c;就可以很快学会使用HubbleDotNet进行全文检索。 HubbleDotNet可以实现全文索引…

浅谈从学校(培训机构)跳跃到企业初/中级java开发工程师的学习路线(由浅入深)

1.先别学SSM&#xff0c;也别学Mybatis ,直接百度SpringBoot 为什么学它呢&#xff0c;简单&#xff0c;还有你要用到的几乎所有框架都可以以最简单的模式去学习&#xff0c;比如mybatis。 springboot天然集成了你在校学习的ssm以及任何你需要用到的东西&#xff0c;真正意义…

interface接口_接口 interface

接口不是类&#xff0c;而是对类的一组需求描述。Arrays类中的sort方法承诺可以对对象数组进行排序&#xff0c;但要求满足下列条件&#xff1a;对象所属的类必须实现了Comparable接口。public interface Comparable {int compareTo(Object other); }Java SE5.0&#xff0c;Com…

代码视图与StoryBoard.Xib文件视图的跳转

在storyboard中拖拽的控件,当我们使用纯代码进行编写的时候,进行跳转的时候用我们平时用的[self.navigationController popToViewController:Vc animated:YES], 你会发现跳转的后出现的页面只有你用用纯代码写的,而storyboard中的没有,这时候我们使用这个方法还是比较简单不能实…

influxdb mysql对比_InfluxDB读写性能测试

这里将告诉您InfluxDB读写性能测试,教程操作步骤:今天进行了InfluxDB和MySQL的对比测试&#xff0c;这里记录下结果&#xff0c;也方便我以后查阅。操作系统&#xff1a; CentOS6.5_x64InfluxDB版本 &#xff1a; v1.1.0MySQL版本&#xff1a;v5.1.73CPU &#xff1a; Intel(R)…

Nginx windows安装部署

一、Nginx简介 Nginx (engine x) 是一个高性能的HTTP和反向代理服务器&#xff0c;也是一个IMAP/POP3/SMTP服务器。Nginx是由伊戈尔赛索耶夫为俄罗斯访问量第二的Rambler.ru 站点&#xff08;俄文&#xff1a;Рамблер&#xff09;开发的. 它也是一种轻量级的Web服务器…

前端学习(1514):vue-router使用步骤

<!-- 1引入插件的js --> <!-- 2设置链接 --> <!-- 3设立容器部分 --> <!-- 4提供要渲染的组件 --> <!-- 5配置路由 --> <!-- 6挂载路由 --> <!DOCTYPE html> <html lang"en"><head><meta charset"UT…

1024电商项目的邮箱验证码与图形验证码功能模块

项目基于springcloudalibaba&#xff0c;模块功能大致概括就是登录页面的时候先完成图形验证码的校验&#xff0c;输入的数字和字母与图片上的相对应之后&#xff0c;会向对应的邮箱或手机号发送邮箱/短信验证码二次验证。这里展示的是邮箱验证码。 用到的技术点有&#xff1a…

Android自己的自动化测试Monkeyrunner和用法示例

眼下android SDK在配有现成的测试工具monkey 和 monkeyrunner两。也许我们不看一样的兄弟名字。但事实是完全跑了两个完全不同的工具。在测试的不同区域的应用程序。总体&#xff0c;monkey主要用于压力和可靠性测试&#xff0c;拟键盘事件流。而且能够自定义发送的次数&#x…

内存大对象dump linux_在 Linux 上创建并调试转储文件 | Linux 中国

了解如何处理转储文件将帮你找到应用中难以重现的 bug。• 来源&#xff1a;linux.cn • 作者&#xff1a;Stephan Avenwedde • 译者&#xff1a;Xingyu.Wang •(本文字数&#xff1a;5501&#xff0c;阅读时长大约&#xff1a;6 分钟)崩溃转储、内存转储、核心转储、系统转储…

爬虫用mysql存储还是mongodb_【面试题】Mongodb和MySQL存储爬虫数据的特点是什么?...

(1)问题分析面试官主要考核Mongodb和MySQL数据库的特点&#xff0c;以及关系型与非关系型数据库。(2)核心问题讲解MySQL属于关系型数据库&#xff0c;它具有以下特点&#xff1a;在不同的引擎上有不同的存储方式。查询语句是使用传统的sql语句&#xff0c;拥有较为成熟的体系&a…

mysql originator_MySQL数据库事件调度(Event)

4.创建事件调度每5秒在表中插入数据MySQL> create event if not exists event_t1 on schedule every 5 second do insert into t values(1,1,sysdate());Query OK, 0 rows affected (0.01 sec)mysql> select * from t; --查看事件执行数据-------------------…

前端学习(1520):vue-router嵌套路由

<!DOCTYPE html> <html lang"en"><head><meta charset"UTF-8"><meta name"viewport" content"widthdevice-width, initial-scale1.0"><title>Document</title></head> <!-- 1引入…

python与sql连接不上_Python连接不上SQL Server的两种根治思路

连接不上数据库&#xff0c;首先可以排除是代码的问题&#xff0c;连接方式都是千篇一律的。大多数问题都是本机的两个原因造成的&#xff0c;1.服务没有开启,2.没有启动SQL配置的TCP/IP下面给出统一解决方案&#xff1a;首先从开始菜单找到SQL数据库的配置工具&#xff0c;比如…

python多进程和多线程一起使用_Python:多进程和多线程

在现实社会&#xff0c;我们经常需要一种场景&#xff0c;就是同时有多个事情需要执行&#xff0c;如在浏览网页的同时需要听音乐。比如说在跳舞的时候要唱歌。同样的&#xff0c;在程序中我们也可能需要这种场景。如下面我们以同时听音乐和浏览网页为例。def network():while …