spring cloud 与spring boot的版本对应总结
Posted c2g5201314
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring cloud 与spring boot的版本对应总结相关的知识,希望对你有一定的参考价值。
1.前言
一开始不理解为什么使用 spring boot 高版本 ,却没有对应的spring cloud版本 ,要以为最高版本的 spring cloud 会向上兼容 。 这个坑 ,没有人告诉我,我踩了好久!!!
2.版本对应总结
1) . spring boot 1.5.9 RELEASE 兼容 Dalston.SR1 ,依赖包如下:
(1)eureka
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-eureka-server</artifactId> </dependency>
(2)feign
<!--feign依赖包--> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-feign</artifactId> </dependency>
//todo
2) . spring boot 2.1.6.RELEASE 可兼容 Greenwich.SR1 、 Greenwich.SR2 、Greenwich.SR3 ,【我使用Greenwich.SR2】
依赖包如下:
(1) eureka
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId> </dependency>
(2)feign
<!--feign依赖包--> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-openfeign</artifactId> </dependency>
//todo
以上是关于spring cloud 与spring boot的版本对应总结的主要内容,如果未能解决你的问题,请参考以下文章
Spring Boot与Spring Cloud技术选型版本对应关系
Spring 5.x Spring Boot 2.x Spring Cloud 与常用技术栈整合