Spring Cloud Hoxton.SR11已釋出

發表於2021-04-23

Spring Cloud Hoxton的Service Release 11(SR11)版本現已釋出。該版本可以在Maven Central中找到。您可以檢視Hoxton發行說明以獲取更多資訊

此處檢視此發行版中包含的所有問題。

 

Hoxton釋出系列的顯著變化

這主要是一個錯誤修復和文件釋出。Hoxton.SR11與Spring Boot 2.3.x和2.2.x相容。

Spring Cloud Commons

Spring Cloud Gateway

Spring Cloud OpenFeign

Spring Cloud Config

春雲斷路器CircuitBreaker

Spring Cloud Kubernetes

春雲Consul

使用Spring Cloud的Maven:

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>Hoxton.SR11</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>
<dependencies>
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-config</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
    </dependency>
    ...
</dependencies>

 

相關文章