springboot、springcloud、dubbo版本兼容

开发的时候版本不兼容挺折腾的,springboot、springcloud、dubbo这三者之间的兼容,以springboot为中间连接:

springboot dubbo-spring
1.x 0.1.2.RELEASE
2.0.0~2.0.9 0.2.1.RELEASE
2.1.x 0.2.1.RELEASE
springcloud springboot
Angel版本 兼容Spring Boot 1.2.x
Brixton版本 兼容Spring Boot 1.3.x,也兼容Spring Boot 1.4.x
Camden版本 兼容Spring Boot 1.4.x,也兼容Spring Boot 1.5.x
Dalston版本、Edgware版本 兼容Spring Boot 1.5.x,不兼容Spring Boot 2.0.x
Finchley版本 兼容Spring Boot 2.0.x,不兼容Spring Boot 1.5.x
Greenwich版本 兼容Spring Boot 2.1.x

pom可以这样指定:


        
            
                
                org.springframework.boot
                spring-boot-dependencies
                2.0.6
                pom
                import
            

            
                org.springframework.cloud
                spring-cloud-dependencies
                Finchley.SR3
                pom
                import
            
        
    

你可能感兴趣的:(java)