添加依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
<version>1.5.9.RELEASE</version>
</dependency>
在配置文件中添加
spring.data.mongodb.uri=mongodb://test:test@localhost:27017/test
这里用的是我的本地库,记得更换。
根据id进行查询
查询实体对应的collection
保存
删除
更新
只更新第一个符合条件的数据