首頁 > 軟體

Java遞迴實現評論多級回覆功能

2022-06-27 14:01:22

最近工作需要做一個評論功能,除了展示評論之外,還需要展示評論回覆,評論的回覆的回覆,這裡就用到了遞迴實現評論的多級回覆。

評論實體

資料庫儲存欄位: id 評論id、parent_id 回覆評論id、message 訊息。其中如果評論不是回覆評論,parent_id-1

建立一個評論實體 Comment

public class Comment {

    /**
     * id
     */
    private Integer id;

    /**
     * 父類別id
     */
    private Integer parentId;

    /**
     * 訊息
     */
    private String message;
}

查詢到所有的評論資料。方便展示樹形資料,對Comment新增回覆列表

List<ViewComment> children

ViewComment結構如下:

// 展示樹形資料
public class ViewComment {
    /**
     * id
     */
    private Integer id;
    /**
     * 父類別id
     */
    private Integer parentId;
    /**
     * 訊息
     */
    private String message;
    /**
     * 回覆列表
     */
    private List<ViewComment> children = new ArrayList<>();
}

新增非回覆評論

非回覆評論的parent_id-1,先找到非回覆評論:

List<ViewComment> viewCommentList = new ArrayList<>();
// 新增模擬資料
Comment comment1 = new Comment(1,-1,"留言1");
Comment comment2 = new Comment(2,-1,"留言2");
Comment comment3 = new Comment(3,1,"留言3,回覆留言1");
Comment comment4 = new Comment(4,1,"留言4,回覆留言1");
Comment comment5 = new Comment(5,2,"留言5,回覆留言2");
Comment comment6 = new Comment(6,3,"留言6,回覆留言3");
//新增非回覆評論
for (Comment comment : commentList) {
    if (comment.getParentId() == -1) {
        ViewComment viewComment = new ViewComment();
        BeanUtils.copyProperties(comment,viewComment);
        viewCommentList.add(viewComment);
    }
}

遞迴新增回覆評論

遍歷每條非回覆評論,遞迴新增回覆評論:

for(ViewComment viewComment : viewCommentList) {
    add(viewComment,commentList);
}
private void add(ViewComment rootViewComment, List<Comment> commentList) {
    for (Comment comment : commentList) {
        // 找到匹配的 parentId  
        if (rootViewComment.getId().equals(comment.getParentId())) {
            ViewComment viewComment = new ViewComment();
            BeanUtils.copyProperties(comment,viewComment);
            rootViewComment.getChildren().add(viewComment);
            //遞迴呼叫 
            add(viewComment,commentList);
        }
    }
}
  • 遍歷每條非回覆評論。
  • 非回覆評論id匹配到評論的parentId,新增到該評論的children列表中。
  • 遞迴呼叫。

結果展示:

github 原始碼

https://github.com/jeremylai7/java-codes/tree/master/basis/src/main/java/recurve

到此這篇關於Java遞迴實現評論多級回覆的文章就介紹到這了,更多相關Java評論多級回覆內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com