亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

Java數(shù)據(jù)封裝樹形結構代碼實例

 更新時間:2020年01月15日 10:07:51   作者:炫舞風中  
這篇文章主要介紹了Java數(shù)據(jù)封裝樹形結構代碼實例,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下

這篇文章主要介紹了Java數(shù)據(jù)封裝樹形結構代碼實例,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下

1、實體類

@data
public class PublishServiceType implements Comparable<PublishServiceType>{


  /**
   * 
   */
  private static final long serialVersionUID = -3572108154932898825L;


  /* 
   * @see [code]
   * @comment 類型標識
   */
  private String code;
  /* 
   * @see {createtime}
   * @comment 創(chuàng)建時間
   */
  private java.util.Date createtime;
  /* 
   * @see {defaultmanual}
   * @comment 服務類型默認使用手冊
   */
  private String defaultmanual;
  /* 
   * @see {description}
   * @comment 服務類型描述
   */
  private String description;
  /* 
   * @see {id}
   * @comment 主鍵
   */
  private String id;
  /* 
   * @see {isdelete}
   * @comment 是否可以刪除
   */
  private Integer isdelete;
  /* 
   * @see {lastmodifytime}
   * @comment 最近修改時間
   */
  private java.util.Date lastmodifytime;
  /* 
   * @see {name}
   * @comment 服務類型名稱
   */
  private String name;
  /* 
   * @see {parentid}
   * @comment 服務類型父節(jié)點
   */
  private String parentid;

  /**
   * 排序
   */
  private Integer sort;

  private List<PublishServiceType>children;
}

2、數(shù)據(jù)封裝

@Override
  public List<PublishServiceType> findList(String name) {
    List<PublishServiceType>list = publishServiceTypeMapper.findByName(name);
    if (JudgeUtil.isEmpty(list)){
      return null;
    }
    //父子級組裝
    return parentAndChildren(list);
  }
 private List<PublishServiceType>parentAndChildren(List<PublishServiceType> list){

    //最頂層根節(jié)點
    List<PublishServiceType>rootList = new ArrayList<>();
    //非最頂層根節(jié)點
    List<PublishServiceType>bodyList = new ArrayList<>();
    for (PublishServiceType publishServiceType : list) {
      if (StringUtils.isBlank(publishServiceType.getParentid())){
        rootList.add(publishServiceType);
      }else{
        bodyList.add(publishServiceType);
      }
    }
    return getTree(rootList,bodyList);
  }

  public List<PublishServiceType> getTree(List<PublishServiceType>rootList, List<PublishServiceType>bodyList){
    if (!JudgeUtil.isEmpty(bodyList)){
      //聲明一個map,用來過濾已操作過的數(shù)據(jù)
      Map<String,String> map = new HashMap<>(bodyList.size());
      rootList.forEach(parent->getChild(parent,bodyList,map));
      return rootList;
    }else{
      return rootList;
    }
  }

  private void getChild(PublishServiceType parent,List<PublishServiceType>bodyList, Map<String,String> map){
    List<PublishServiceType>childList = new ArrayList<>();
    bodyList.stream().filter(c->!map.containsKey(c.getId()))
             .filter(c->c.getParentid().equals(parent.getId()))
             .forEach(c->{
               map.put(c.getId(),c.getParentid());
               getChild(c,bodyList,map);
               childList.add(c);
             });
    
    parent.setChildren(childList);
  }

3、結果

{
 "code": 20000,
 "message": "成功",
 "data": [
  {
   "code": null,
   "createtime": null,
   "defaultmanual": null,
   "description": null,
   "id": "dc1d70b9eb7b4df3bbe8dcc6a93cbd57",
   "isdelete": -1,
   "lastmodifytime": null,
   "name": "基礎服務",
   "parentid": "",
   "sort": 1,
   "children": [
    {
     "code": null,
     "createtime": null,
     "defaultmanual": null,
     "description": null,
     "id": "b1779671ef1b45e0a9a8a1edbff03f1e",
     "isdelete": -1,
     "lastmodifytime": null,
     "name": "數(shù)據(jù)源服務",
     "parentid": "dc1d70b9eb7b4df3bbe8dcc6a93cbd57",
     "sort": 2,
     "children": [
      {
       "code": null,
       "createtime": null,
       "defaultmanual": null,
       "description": null,
       "id": "2a38a8254ec348e9b54c9bf4622f23db",
       "isdelete": 1,
       "lastmodifytime": null,
       "name": "測試添加數(shù)據(jù)庫服務2",
       "parentid": "b1779671ef1b45e0a9a8a1edbff03f1e",
       "sort": null,
       "children": []
      }
     ]
    },
    {
     "code": null,
     "createtime": null,
     "defaultmanual": null,
     "description": null,
     "id": "d4f3b047dc2d467a9b404ded8acf4673",
     "isdelete": 1,
     "lastmodifytime": null,
     "name": "text_lsa",
     "parentid": "dc1d70b9eb7b4df3bbe8dcc6a93cbd57",
     "sort": null,
     "children": []
    }
   ]
  },
  {
   "code": null,
   "createtime": null,
   "defaultmanual": null,
   "description": null,
   "id": "af1b4a4d2f074fa19e1dae0a5540a5bf",
   "isdelete": 1,
   "lastmodifytime": null,
   "name": "測試添加1",
   "parentid": "",
   "sort": null,
   "children": []
  },
  {
   "code": null,
   "createtime": null,
   "defaultmanual": null,
   "description": null,
   "id": "62e15d859a224126884888a55df355a7",
   "isdelete": 1,
   "lastmodifytime": null,
   "name": "測試添加2",
   "parentid": "",
   "sort": null,
   "children": []
  }
 ]
}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。

相關文章

  • Java使用substring()截取(提取)子字符串

    Java使用substring()截取(提取)子字符串

    這篇文章主要介紹了Java使用substring()截取(提取)子字符串,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧
    2021-03-03
  • 關于SpringCloud的Bus消息總線圖文詳解

    關于SpringCloud的Bus消息總線圖文詳解

    這篇文章主要介紹了關于SpringCloud的Bus消息總線圖文詳解,Spring Cloud Bus是用來將分布式系統(tǒng)的節(jié)點與輕量級消息系統(tǒng)鏈接起來的框架,它整合了Java的事件處理機制和消息中間件的功能,需要的朋友可以參考下
    2023-05-05
  • @OneToMany查詢陷入循環(huán)引用的解決方案

    @OneToMany查詢陷入循環(huán)引用的解決方案

    這篇文章主要介紹了@OneToMany查詢陷入循環(huán)引用的解決方案,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2021-10-10
  • Springboot在IDEA熱部署的配置方法

    Springboot在IDEA熱部署的配置方法

    這篇文章主要介紹了Springboot在IDEA熱部署的配置方法,給大家補充介紹了Intellij IDEA 4種配置熱部署的方法,需要的朋友可以參考下
    2018-04-04
  • java ExecutorService CompletionService線程池區(qū)別與選擇

    java ExecutorService CompletionService線程池區(qū)別與選擇

    這篇文章主要為大家介紹了java ExecutorService CompletionService線程池區(qū)別與選擇使用示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪
    2023-09-09
  • Java OpenCV實現(xiàn)人臉識別過程詳解

    Java OpenCV實現(xiàn)人臉識別過程詳解

    這篇文章主要介紹了Java OpenCV實現(xiàn)人臉識別過程詳解,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下
    2019-08-08
  • Java中String判斷值為null或空及地址是否相等的問題

    Java中String判斷值為null或空及地址是否相等的問題

    這篇文章主要介紹了Java中String判斷值為null或空及地址是否相等的問題,文中舉了簡單的例子對字符串類型的值和地址問題進行講解,需要的朋友可以參考下
    2016-01-01
  • Java 內置Http Server構建web應用案例詳解

    Java 內置Http Server構建web應用案例詳解

    這篇文章主要介紹了Java 內置Http Server構建web應用案例詳解,本篇文章通過簡要的案例,講解了該項技術的了解與使用,以下就是詳細內容,需要的朋友可以參考下
    2021-09-09
  • java數(shù)據(jù)結構之樹基本概念解析及代碼示例

    java數(shù)據(jù)結構之樹基本概念解析及代碼示例

    這篇文章主要介紹了java數(shù)據(jù)結構之樹基本概念解析及代碼示例,介紹了樹的定義,基本術語,主要操作及實現(xiàn)等相關內容,具有一定參考價值,需要的朋友可了解下。
    2017-11-11
  • java把字符串寫入文件里的簡單方法分享

    java把字符串寫入文件里的簡單方法分享

    這篇文章主要介紹了java把字符串寫入到文件里的簡單方法,這是跟一個外國朋友學的代碼,需要的朋友可以參考下
    2014-03-03

最新評論