我是靠谱客的博主 潇洒小甜瓜,最近开发中收集的这篇文章主要介绍JAVA 任意实体集合形成树形结构JAVA 形成树形结构,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

JAVA 形成树形结构

通过泛型+反射+加自定义注解,任意实体集合递归形成树形结构
在业务开发过程中经常遇到要把查询到的集合形成树形结构,比如菜单,分类,地区等
其逻辑都是一样的只不过实体类不一样,我这套代码优点是所有能形成树形结构的实体类打上自定义注解就能用,不需要实现什麽接口,不需要麻烦的設置,简单便捷
先上代码
第一个自定义注解TreeId (打在实体类的主键ID上)

import java.lang.annotation.*;

@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface TreeId {
    String value() default "";
}

第二个自定义注解TreeParentId(打在实体类的父类ID上)

import java.lang.annotation.*;

@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface TreeParentId{
    String value() default "";
}

第三个自定义注解TreeList(打在实体类的集合上)

import java.lang.annotation.*;

@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface TreeParentId{
    String value() default "";
}

然后是最重要的工具类TreeUtil

import cn.hutool.core.util.ObjectUtil;

import java.lang.annotation.Annotation;
import java.lang.reflect.Field;
import java.util.Collection;
import java.util.Iterator;
import java.util.LinkedList;

public class TreeUtil {
    //递归形成树形结构
    public static <T> Collection<T> buildTree(Collection<T>  collection, Long id) {
        if (ObjectUtil.isNull(collection) || collection.size() == 0) {
            return null;
        }
        Collection<T> cs = new LinkedList<>();
        try {
            for (Iterator<T> it = collection.iterator(); it.hasNext(); ) {
                T tree = it.next();
                Class obj = tree.getClass();
                Field[] fields = obj.getDeclaredFields();
                Field parentIdField = getTreeFile(fields, TreeParentId.class);
                if(ObjectUtil.isNotNull(parentIdField)){
                    if (parentIdField.get(tree).equals(id)) {
                        cs.add(tree);
                        it.remove();
                    }
                }else{
                    throw new Exception("未找到父类Id");
                }
            }
            if (ObjectUtil.isNull(cs) || cs.size() == 0) {
                return null;
            }
            for (T tree : cs) {
                Class obj = tree.getClass();
                Field[] fields = obj.getDeclaredFields();
                Field ListField = getTreeFile(fields, TreeList.class);
                Field IdField = getTreeFile(fields, TreeId.class);
                if(ObjectUtil.isNull(ListField)){
                    throw new Exception("未找到集合");
                }
                if(ObjectUtil.isNull(IdField)){
                    throw new Exception("未找到Id");
                }
                ListField.setAccessible(true);
                ListField.set(tree,buildTree(collection,(Long) IdField.get(tree)));
            }
        }catch (Exception ex){
            ex.printStackTrace();
        }
        return cs;
    }

    public static Field getTreeFile(Field[] fields, Class<? extends Annotation> t) {
        for (Field field : fields) {
            if(field.isAnnotationPresent(t)) {
                field.setAccessible(true);
                return field;
            }
        }
        return null;
    }
}

然后随便创建一个实体类并且在相对应的屬性上面打上对应的注解

@Data
public class user{
	@TreeId()
	private Long id;

	private String name;
	
	@TreeParentId()
	private Long parentId;
	
	@TreeList()
	private List<user> users;
	
}

最后是测试主方法

    public static void main(String[] args) {
        List<user> users = new ArrayList<>();
        for (int i=1;i<4;i++){
            user user = new user();
            user.setId(10l+i);
            user.setParentId(0l);
            users.add(user);
        }
        for (int i=1;i<4;i++){
            user user = new user();
            user.setId(20l+i);
            user.setParentId(11l);
            users.add(user);
        }
        for (int i=1;i<4;i++){
            user user = new user();
            user.setId(30l+i);
            user.setParentId(21l);
            users.add(user);
        }
        System.out.println(TreeUtil.buildTree(users,0l));
    }

以下是结果:

[
user(id=11, name=null, parentId=0, users=[
	user(id=21, name=null, parentId=11, users=[
		user(id=31, name=null, parentId=21, users=null), 
		user(id=32, name=null, parentId=21, users=null), 
		user(id=33, name=null, parentId=21, users=null)]), 
	user(id=22, name=null, parentId=11, users=null), 
	user(id=23, name=null, parentId=11, users=null)]), 
user(id=12, name=null, parentId=0, users=null),
user(id=13, name=null, parentId=0, users=null)
]

最后

以上就是潇洒小甜瓜为你收集整理的JAVA 任意实体集合形成树形结构JAVA 形成树形结构的全部内容,希望文章能够帮你解决JAVA 任意实体集合形成树形结构JAVA 形成树形结构所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(73)

评论列表共有 0 条评论

立即
投稿
返回
顶部