spring-cloud-starter-alibaba-nacos-config /Users/liziying/Desktop/dcpsCode/jytd_springboot/coupon/pom.xml 对应springboot哪个版本
时间: 2023-08-08 12:08:56 浏览: 170
SpringCloud Alibaba 2021.0.1, nacos 2.0.3 SpringBoot 2.6.4 搭建及代码
5星 · 资源好评率100%
spring-cloud-starter-alibaba-nacos-config 一般是与 Spring Boot 2.x 版本搭配使用的。具体哪个版本取决于你项目中使用的 Spring Boot 版本。你可以在 pom.xml 文件中查看你的 Spring Boot 版本,例如:
```
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.5</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
```
在这个例子中,Spring Boot 版本是 2.4.5。
阅读全文