Springboot实现给前端返回一个tree结构方法

2022-11-13 11:11:06 返回 方法 结构

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

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

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

package com.wyr.modules.example.domain;
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
import com.baomidou.mybatisplus.annotation.TableName;
import cn.hutool.core.bean.BeanUtil;
import cn.hutool.core.bean.copier.CopyOptions;
import javax.validation.constraints.*;
import java.sql.Timestamp;
import java.io.Serializable;

@Data
@TableName("store_cateGory")
public class Category implements Serializable {
    
    @TableId
    private Integer id;
    
    @NotNull
    private Integer pid;
    
    @NotBlank
    private String cateName;
    
    private Integer sort;
    
    private String pic;
    
    private Integer isshow;
    
    @TableField(fill= FieldFill.INSERT)
    private Timestamp createTime;
    
    @TableField(fill= FieldFill.INSERT_UPDATE)
    private Timestamp updateTime;
    
    private Integer isDel;
    public void copy(Category source){
        BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
    }
}

Dto层:

package com.wyr.modules.example.service.dto;
import lombok.Data;
import java.sql.Timestamp;
import java.io.Serializable;
import java.util.List;

@Data
public class CategoryDto implements Serializable {
    
    private Long id;
    
    private Long pid;
    
    private String cateName;
    
    private Integer sort;
    
    private String pic;
    
    private Integer isShow;
    
    private Timestamp createTime;
    
    private Timestamp updateTime;
    
    private Integer isDel;
    private List<CategoryDto> children;
}

这里注意一下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:业务层:

 
    @Override
    public Map<String, Object> buildTree(List<CategoryDto> categoryDtos) {
        List<CategoryDto> trees = new ArrayList<>();
        Set<Long> ids = new HashSet<>();
        for (CategoryDto categoryDto :categoryDtos) {
            if (categoryDto.getPid() == 0) {
                trees.add(categoryDto);
            }
            for (CategoryDto it : categoryDtos) {
                if (it.getPid().equals(categoryDto.getId())) {
                    if (categoryDto.getChildren() == null) {
                        categoryDto.setChildren(new ArrayList<>());
                    }
                    categoryDto.getChildren().add(it);
                    ids.add(it.getId());
                }
            }

        }
        Map<String, Object> map = new HashMap<>(2);
        if (trees.size() == 0){
            trees = categoryDtos.stream().filter(s -> !ids.contains(s.getId())).collect(Collectors.toList());
        }
        map.put("content",trees);
        map.put("totalElements", categoryDtos.size());
        return map;
    }
}

到此这篇关于SpringBoot实现给前端返回一个tree结构方法的文章就介绍到这了,更多相关springboot tree结构内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

相关文章