Springboot怎样返回给前端一个tree结构

x33g5p2x  于2022-07-04 转载在 Spring  
字(2.9k)|赞(0)|评价(0)|浏览(518)

1:首先我们看一下数据库的表:

这里的pid就是代表他的父节点id,如果没有父节点,那么pid就是0,上面的表就可以看作是一个tree结构,那么我们怎样去将这个tree结构返回给前端呢?

2:首先写好数据库对应的实体类和Dto层:

  1. package com.wyr.modules.example.domain;
  2. import com.baomidou.mybatisplus.annotation.FieldFill;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import lombok.Data;
  6. import com.baomidou.mybatisplus.annotation.TableName;
  7. import cn.hutool.core.bean.BeanUtil;
  8. import cn.hutool.core.bean.copier.CopyOptions;
  9. import javax.validation.constraints.*;
  10. import java.sql.Timestamp;
  11. import java.io.Serializable;
  12. /**
  13. * @author jianyijun
  14. * @date 2022-07-02
  15. */
  16. @Data
  17. @TableName("store_category")
  18. public class Category implements Serializable {
  19. /** 商品分类表ID */
  20. @TableId
  21. private Integer id;
  22. /** 父id */
  23. @NotNull
  24. private Integer pid;
  25. /** 分类名称 */
  26. @NotBlank
  27. private String cateName;
  28. /** 排序 */
  29. private Integer sort;
  30. /** 图标 */
  31. private String pic;
  32. /** 是否推荐 */
  33. private Integer isShow;
  34. /** 添加时间 */
  35. @TableField(fill= FieldFill.INSERT)
  36. private Timestamp createTime;
  37. /** 更新时间 */
  38. @TableField(fill= FieldFill.INSERT_UPDATE)
  39. private Timestamp updateTime;
  40. /** 删除状态 */
  41. private Integer isDel;
  42. public void copy(Category source){
  43. BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
  44. }
  45. }

Dto层:

  1. package com.wyr.modules.example.service.dto;
  2. import lombok.Data;
  3. import java.sql.Timestamp;
  4. import java.io.Serializable;
  5. import java.util.List;
  6. /**
  7. * @author jianyijun
  8. * @date 2022-07-02
  9. */
  10. @Data
  11. public class CategoryDto implements Serializable {
  12. /** 商品分类表ID */
  13. private Long id;
  14. /** 父id */
  15. private Long pid;
  16. /** 分类名称 */
  17. private String cateName;
  18. /** 排序 */
  19. private Integer sort;
  20. /** 图标 */
  21. private String pic;
  22. /** 是否推荐 */
  23. private Integer isShow;
  24. /** 添加时间 */
  25. private Timestamp createTime;
  26. /** 更新时间 */
  27. private Timestamp updateTime;
  28. /** 删除状态 */
  29. private Integer isDel;
  30. private List<CategoryDto> children;
  31. }

这里注意一下Dto层多余的字段:private List<CategoryDto> children;,这个也就是一个自己的集合,代表自己的孩子

3:这里介绍一下什么是Dto层,以及一些区别:

  • (1) entity 里的每一个字段,与数据库相对应,

  • (2) vo 里的每一个字段,是和你前台 html 页面相对应,

  • (3) dto 这是用来转换从 entity 到 vo,或者从 vo 到 entity 的中间的东西 。(DTO中拥有的字段应该是entity中或者是vo中的一个子集)

4:然后是controller层:

ResponseEntity<Object>不用管,是一个通用的返回数据封装类,然后中间那行就是最里面使用了QueryHelp工具,可以不写SQL语句进行条件查询,然后convert就是一个复制方法,可以类似于BeanUtils里面的copy等等,这就是先将查询到的list复制给Dto类,然后我们进入接下来的Service方法:buildTree:

5:业务层:

  1. /**
  2. * 构建分类树
  3. * @param categoryDtos 原始数据
  4. * @return
  5. */
  6. @Override
  7. public Map<String, Object> buildTree(List<CategoryDto> categoryDtos) {
  8. List<CategoryDto> trees = new ArrayList<>();
  9. Set<Long> ids = new HashSet<>();
  10. for (CategoryDto categoryDto :categoryDtos) {
  11. if (categoryDto.getPid() == 0) {
  12. trees.add(categoryDto);
  13. }
  14. for (CategoryDto it : categoryDtos) {
  15. if (it.getPid().equals(categoryDto.getId())) {
  16. if (categoryDto.getChildren() == null) {
  17. categoryDto.setChildren(new ArrayList<>());
  18. }
  19. categoryDto.getChildren().add(it);
  20. ids.add(it.getId());
  21. }
  22. }
  23. }
  24. Map<String, Object> map = new HashMap<>(2);
  25. if (trees.size() == 0){
  26. trees = categoryDtos.stream().filter(s -> !ids.contains(s.getId())).collect(Collectors.toList());
  27. }
  28. map.put("content",trees);
  29. map.put("totalElements", categoryDtos.size());
  30. return map;
  31. }
  32. }

相关文章