Spring Cloud 与微服务学习总结(15)—— Spring Cloud 2021.0.1 发布

Posted 科技D人生

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Cloud 与微服务学习总结(15)—— Spring Cloud 2021.0.1 发布相关的知识,希望对你有一定的参考价值。

Spring Cloud 2021.0.1 正式发布,这是 Spring Cloud 2021 的第一个错误修正版本。

支持 2021.0.0 平稳升级

目前已经可以从中央仓库获取,坐标如下:

dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>2021.0.1</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&

以上是关于Spring Cloud 与微服务学习总结(15)—— Spring Cloud 2021.0.1 发布的主要内容,如果未能解决你的问题,请参考以下文章

Spring Cloud 与微服务学习总结(18)—— Spring Cloud Gateway 2.0 详解

Spring Cloud 与微服务学习总结(16)—— 微服务架构统一安全认证设计与实践

Spring Cloud 与微服务学习总结(16)—— 微服务架构统一安全认证设计与实践

Spring Cloud与微服务学习总结(13)——云原生趋势下,微服务的拆分粒度如何把握?

Spring Cloud与微服务学习总结(13)——云原生趋势下,微服务的拆分粒度如何把握?

Spring Cloud 与微服务学习总结(14)—— 云原生时代,如何从 Java 开发者转型微服务?