springboot 2.7.4对应spring-boot-starter-data-mongodb版本
时间: 2023-10-11 16:13:27 浏览: 252
springboot所数据源链接mongodb
Spring Boot 2.7.4对应的Spring Boot Starter Data MongoDB版本是2.7.4。可以在pom.xml文件中添加以下依赖来使用:
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
<version>2.7.4</version>
</dependency>
```
注意,这只是一个例子,具体的版本号可能会因为时间不同而变化,可以在Maven中央仓库中查找最新的版本。
阅读全文