如何在spring上配置mongotemplate?

lhcgjxsq  于 2021-07-26  发布在  Java
关注(0)|答案(1)|浏览(275)

我会处理一些用spring开发的老项目,我通常用spring boot,所以在开始之前我开始做一些测试来练习,我找了一些配置示例,但是我发现很少有示例(spring boot有很多信息,但是spring没有),而且没有一个对我有用。有人能告诉我使用mongotemplate和spring的最简单方法吗?

z9gpfhce

z9gpfhce1#

Spring Boot等级:
@springbootapplication@enableautoconfiguration(exclude={datasourceautoconfiguration.class,hibernatejpaaautoconfiguration.class})公共类myapp{…}
mongo回购:
@repository公共接口userrepository扩展了mongorepository<user,long>{}
附属国

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-mongodb</artifactId>
</dependency>
<dependency>
    <groupId>org.mongodb</groupId>
    <artifactId>mongo-java-driver</artifactId>
    <version>{mongo.driver.version}</version>
</dependency>

另请参阅https://mkyong.com/mongodb/spring-data-mongodb-hello-world-example/

相关问题