目录
1.导入springboot整合MongoDB的starter坐标
3.使用springboot整合Mongodb的专用客户端接口操作
1.导入springboot整合MongoDB的starter坐标
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
</dependency>
2.进行yml文件的基础配置
spring:
data:
mongodb:
uri: mongodb://localhost/testdb