Spring boot和Spring cloud对应版本兼容问题
Spring boot和Spring cloud对应版本兼容问题
最近要搭建一个网关系统,使用到了Spring cloud,在引入对应的依赖后,启动时报错org.springframework.boot.builder.SpringApplicationBuilder.
通过网上搜索资料,查到是由于Spring boot版本和spring cloud版本不兼容导致的,由于当前我使用的是Spring boot 2.1.3,对应的应该使用Spring cloud 的Finchley版本。
Spring cloud | Spring boot |
---|---|
Finchley | 兼容Spring Boot 2.0.x,不兼容Spring Boot 1.5.x |
Dalston和Edgware | 兼容Spring Boot 1.5.x,不兼容Spring Boot 2.0.x |
Camden | 兼容Spring Boot 1.4.x,也兼容Spring Boot 1.5.x |
Brixton | 兼容Spring Boot 1.3.x,也兼容Spring Boot 1.4.x |
Angel | 兼容Spring Boot 1.2.x |