springboot集成mongodb
时间: 2023-04-28 08:06:36 浏览: 74
springboot整合mongodb
在 Spring Boot 中集成 MongoDB 非常简单,只需要在项目的 pom.xml 文件中加入 MongoDB 的依赖即可。
首先,在 pom.xml 中加入 MongoDB 的 starter 依赖:
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
</dependency>
```
然后,在 application.properties 或者 application.yml 中配置 MongoDB 的连接信息:
```
spring.data.mongodb.uri=mongodb://<username>:<password>@<host>:<port>/<database>
```
这样就可以在代码中使用 MongoTemplate 或者 MongoRepository 操作 MongoDB 了。
阅读全文