Spring Cloud Alibaba與Spring Boot、Spring Cloud之間不得不說的版本關係

程式猿DD發表於2019-03-03

這篇博文是臨時增加出來的內容,主要是由於最近連載《Spring Cloud Alibaba基礎教程》系列的時候,碰到讀者諮詢的大量問題中存在一個比較普遍的問題:版本的選擇。其實這類問題,在之前寫Spring Cloud基礎教程的時候,就已經發過一篇《聊聊Spring Cloud版本的那些事兒》,來說明Spring Boot和Spring Cloud版本之間的關係。

Spring Cloud Alibaba現階段版本的特殊性

現在的Spring Cloud Alibaba由於沒有納入到Spring Cloud的主版本管理中,所以我們需要自己去引入其版本資訊,比如之前教程中的例子:

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>Finchley.SR1</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-alibaba-dependencies</artifactId>
            <version>0.2.1.RELEASE</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

而不是像以往使用Spring Cloud的時候,直接引入Spring Cloud的主版本(Dalston、Edgware、Finchley、Greenwich這些)就可以的。我們需要像上面的例子那樣,單獨的引入spring-cloud-alibaba-dependencies來管理Spring Cloud Alibaba下的元件版本。

由於Spring Cloud基於Spring Boot構建,而Spring Cloud Alibaba又基於Spring Cloud Common的規範實現,所以當我們使用Spring Cloud Alibaba來構建微服務應用的時候,需要知道這三者之間的版本關係。

下表整理了目前Spring Cloud Alibaba的版本與Spring Boot、Spring Cloud版本的相容關係:

Spring Boot Spring Cloud Spring Cloud Alibaba
2.1.x Greenwich 0.9.x
2.0.x Finchley 0.2.x
1.5.x Edgware 0.1.x
1.5.x Dalston 0.1.x

以上版本對應內容根據當前情況實時調整修改,以方便使用者瞭解他們的對應關係變化情況

所以,不論您是在讀我的《Spring Boot基礎教程》《Spring Cloud基礎教程》還是正在連載的《Spring Cloud Alibaba系列教程》。當您照著博文的順序,一步步做下來,但是沒有除錯成功的時候,強烈建議檢查一下,您使用的版本是否符合上表的關係。

推薦:Spring Cloud Alibaba基礎教程

該系列教程的程式碼示例:

如果您對這些感興趣,歡迎star、follow、收藏、轉發給予支援!

以下專題教程也許您會有興趣

相關文章