实现评论的基本增删改查、根据文章id查询评论、评论点赞功能

1、数据库表设计

数据库:articledb

专栏文章评论 comment
字段名称 字段含义 字段类型 备注
_id ID ObjectId或String Mongo的主键字段
articleid 文章ID String
content 评论内容 String
userid 评论人ID String
nickname 评论人昵称 String
createdatetime 评论的日期时间 Data
likenum 点赞数 Int32
replynum 回复数 Int32
state 状态 String 0:不可见;1:可见;
parentid 上级ID String 如果为0表示文章的顶级评论

2、技术选型

2.1 mongodb-driver(了解)

mongodb-driver是mongo官方推出的java连接mongoDB的驱动包,相当于JDBC驱动。

官方驱动说明和下载:http://mongodb.github.io/mongo-java-driver/

官方驱动示例文档:http://mongodb.github.io/mongo-java-driver/3.8/driver/getting-started/quick-start/

2.2 SpringDataMongoDB

SpringData家族成员之一,用于操作MongoDB的持久层框架,封装了底层的mongodb-driver。

官网主页: https://projects.spring.io/spring-data-mongodb/

3、文章微服务模块搭建

  1. 搭建项目工程article,pom.xml引入依赖:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.1</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.frx01</groupId>
<artifactId>article</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>article</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

</project>
  1. 创建application.yml
1
2
3
4
5
6
7
8
9
10
11
12
spring:
#数据源配置
data:
mongodb:
# 主机地址
host: 192.168.72.200
# 数据库
database: articledb
# 默认端口是27017
port: 27017
#也可以使用uri连接
#uri: mongodb://192.168.72.200:27017/articledb
  1. 自动创建好启动类
1
2
3
4
5
6
7
8
@SpringBootApplication
public class ArticleApplication {

public static void main(String[] args) {
SpringApplication.run(ArticleApplication.class, args);
}

}
  1. 启动项目,看是否能正常启动,控制台没有错误。

4、文章评论实体类的编写

创建实体类 创建包com.frx01.article,包下建包pojo用于存放实体类,创建实体类 com.frx01.article.pojo.Comment

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
@Data
//把一个java类声明为mongodb的文档,可以通过collection参数指定这个类对应的文档。
//@Document(collection="mongodb 对应 collection 名")
// 若未加 @Document ,该 bean save 到 mongo 的 comment collection
// 若添加 @Document ,则 save 到 comment collection
@Document(collection="comment")//可以省略,如果省略,则默认使用类名小写映射集合
//复合索引
// @CompoundIndex( def = "{'userid': 1, 'nickname': -1}")
public class Comment implements Serializable {
//主键标识,该属性的值会自动对应mongodb的主键字段"_id",如果该属性名就叫“id”,则该注解可以省略,否则必须写
@Id
private String id;//主键
//该属性对应mongodb的字段的名字,如果一致,则无需该注解
@Field("content")
private String content;//吐槽内容
private Date publishtime;//发布日期
//添加了一个单字段的索引
@Indexed
private String userid;//发布人ID
private String nickname;//昵称
private LocalDateTime createdatetime;//评论的日期时间
private Integer likenum;//点赞数
private Integer replynum;//回复数
private String state;//状态
private String parentid;//上级ID
private String articleid;

}

说明:

索引可以大大提升查询效率,一般在查询字段上添加索引,索引的添加可以通过Mongo的命令来添加,也可以在Java的实体类中通过注解添加。

  1. 单字段索引注解@Indexed

org.springframework.data.mongodb.core.index.Indexed.class

声明该字段需要索引,建索引可以大大的提高查询效率。

Mongo命令参考:

1
db.comment.createIndex({"userid":1})
  1. 复合索引注解@CompoundIndex

org.springframework.data.mongodb.core.index.CompoundIndex.class

复合索引的声明,建复合索引可以有效地提高多字段的查询效率。

Mongo命令参考

1
db.comment.createIndex({"userid":1,"nickname":-1})

5、文章评论的基本增删改查

  1. 创建数据访问接口 com.frx01.article包下创建dao包,包下创建接口com.frx01.article.dao.CommentRepository
1
2
3
//desc:评论的持久层接口
public interface CommentRepository extends MongoRepository<Comment,String> {
}
  1. 创建业务逻辑类 com.frx01.article包下创建service包,包下创建类com.frx01.article.service.CommentService
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
@Service
public class CommentService {

@Autowired
private CommentRepository commentRepository;

/**
* 保存一个评论
*
* @param comment
*/
public void saveComment(Comment comment) {
//如果需要自定义主键,可以在这里指定主键;如果不指定主键,MongoDB会自动生成主键
//设置一些默认初始值。。。
//调用dao
commentRepository.save(comment);
}

/**
* 更新评论
*
* @param comment
*/
public void updateComment(Comment comment) {
//调用dao
commentRepository.save(comment);
}

/**
* 根据id删除评论
*
* @param id
*/
public void deleteCommentById(String id) {
//调用dao
commentRepository.deleteById(id);
}

/**
* 查询所有评论
*
* @return
*/
public List<Comment> findCommentList() {
//调用dao
return commentRepository.findAll();
}

/**
* 根据id查询评论
*
* @param id
* @return
*/
public Comment findCommentById(String id) {
//调用dao
return commentRepository.findById(id).get();
}

}
  1. 新建Junit测试类,测试保存和查询所有:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest

public class ArticleApplicationTests {

@Autowired
private CommentService commentService;

/**
* 通过id查询评论
*/
@Test
public void testFindCommentById(){
Comment commentById = commentService.findCommentById("1");
System.out.println(commentById);

}

/**
* 保存一个评论
*/
@Test
public void testSaveComment(){
Comment comment = new Comment();
comment.setArticleid("100000");
comment.setContent("测试添加的数据");
comment.setCreatedatetime(LocalDateTime.now());
comment.setUserid("1006");
comment.setNickname("xustudyxu");
comment.setState("1");
comment.setReplynum(0);
comment.setReplynum(0);
commentService.saveComment(comment);
}

/**
* 查询全部评论
*/
@Test
public void testFindCommentList(){
List<Comment> commentList = commentService.findCommentList();
commentList.forEach(System.out::println);
}


}

6、根据上级ID查询文章评论的分页列表

  1. CommentRepository新增方法定义
1
2
//根据父id,查询子评论的分页列表
Page<Comment> findByParentid(String parentid, Pageable pageable);
  1. CommentService新增方法
1
2
3
4
5
6
7
8
9
10
/**
* 根据parentid查询分页列表
* @param parentid
* @param page
* @param size
* @return
*/
public Page<Comment> findCommentListByParentid(String parentid,int page,int size){
return commentRepository.findByParentid(parentid, PageRequest.of(page-1,size));
}
  1. junit测试用例:

com.frx01.article.ArticleApplicationTests

1
2
3
4
5
6
7
8
9
10
/**
* 测试根据父id查询子评论的分页列表
*/
@Test
public void testFindCommentListByParentid(){
Page<Comment> pageResponse = commentService.findCommentListByParentid("3", 1, 2);
System.out.println("---总记录数---:"+pageResponse.getTotalElements());
System.out.println("---当前页数据---:"+pageResponse.getContent());

}
  1. 测试

使用compass快速插入一条测试数据,数据的内容是对3号评论内容进行评论。

image

执行测试,结果:

1
2
3
4
---总记录数---:1
---当前页数据---:[Comment(id=62b86e74258c6f1903c71820, content=:不要让惰性毁了你, publishtime=null, userid=1003, nickname=null, createdatetime=null, likenum=null, replynum=null, state=null, parentid=3, articleid=100000)]

Process finished with exit code 0

7、MongoTemplate实现评论点赞

我们看一下以下点赞的临时示例代码: CommentService 新增updateThumbup方法

1
2
3
4
5
6
7
8
9
/**
* 点赞-效率低
* @param id
*/
public void updateCommentThumbupToIncrementingOld(String id){
Comment comment = commentRepository.findById(id).get();
comment.setLikenum(comment.getReplynum()+1);
commentRepository.save(comment);
}

以上方法虽然实现起来比较简单,但是执行效率并不高,因为我只需要将点赞数加1就可以了,没必要查询出所有字段修改后再更新所有字段。(蝴蝶效应)

我们可以使用MongoTemplate类来实现对某列的操作。

  1. 修改CommentService
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//注入MongoTemplate
@Autowired
private MongoTemplate mongoTemplate;

/**
* 点赞数+1
* @param id
*/
public void updataCommentLikenum(String id){

//查询条件
Query query = Query.query(Criteria.where("_id").is(id));

//更新条件
Update update = new Update();

//局部更新,相当于$set
// update.set(key,value)
//递增$inc
// update.inc("likenum",1);
update.inc("likenum");


//参数1:查询对象
//参数2:更新对象
//参数3:集合的名字或实体类的类型Comment.class
mongoTemplate.updateFirst(query,update,Comment.class);
}
  1. 测试用例
1
2
3
4
5
6
@Test
public void testupdataCommentLikenum(){

//对3号文档的点赞数+1
commentService.updataCommentLikenum("3");
}

测试前:

image

测试后:

image