Spring Cloud Hoxton.SR11已发布


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>