这篇文章主要介绍“怎么使用Java递归实现评论多级回复功能”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“怎么使用Java递归实现评论多级回复功能”文章能帮助大家解决问题。评论实体数据库存储字段: i
这篇文章主要介绍“怎么使用Java递归实现评论多级回复功能”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“怎么使用Java递归实现评论多级回复功能”文章能帮助大家解决问题。
数据库存储字段: id
评论id、parent_id
回复评论id、message
消息。其中如果评论不是回复评论,parent_id
为-1
。
创建一个评论实体 Comment
:
public class Comment { private Integer id; private Integer parentId; private String message;}
查询到所有的评论数据。方便展示树形数据,对Comment
添加回复列表
List<ViewComment> children
ViewComment
结构如下:
// 展示树形数据public class ViewComment { private Integer 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
列表中。
递归调用。
关于“怎么使用Java递归实现评论多级回复功能”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注编程网精选频道,小编每天都会为大家更新不同的知识点。
--结束END--
本文标题: 怎么使用Java递归实现评论多级回复功能
本文链接: https://lsjlt.com/news/342077.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0