这篇文章主要介绍了Java递归实现评论多级回复功能,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
最近工作需要做一个评论功能,除了展示评论之外,还需要展示评论回复,评论的回复的回复,这里就用到了递归实现评论的多级回复。
评论实体
数据库存储字段: 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评论多级回复内容请搜索编程学习网以前的文章希望大家以后多多支持编程学习网!
本文标题为:Java递归实现评论多级回复功能
- Spring Security权限想要细化到按钮实现示例 2023-03-07
- ExecutorService Callable Future多线程返回结果原理解析 2023-06-01
- Java实现顺序表的操作详解 2023-05-19
- JSP页面间传值问题实例简析 2023-08-03
- SpringBoot使用thymeleaf实现一个前端表格方法详解 2023-06-06
- 深入了解Spring的事务传播机制 2023-06-02
- Springboot整合minio实现文件服务的教程详解 2022-12-03
- Java中的日期时间处理及格式化处理 2023-04-18
- JSP 制作验证码的实例详解 2023-07-30
- 基于Java Agent的premain方式实现方法耗时监控问题 2023-06-17