其他
Spring Cloud 2021.0.1 发布
大家好,我是D哥
点击关注下方公众号,Java面试资料 都在这里
来源:JAVA架构日记
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</artifactId>
</dependency>
...
</dependencies>
# 更新日志
Spring Cloud Gateway
新增路由谓词,用于检查 X-Forwarded-for 请求值的合法性,类似于 RemoteAddr 谓词
允许设置网关 HandlerMapping 的顺序。默认情况下 GatewyHandlerMapping 优先级最高
Spring Cloud Openfeign
更新至 OpenFeign 11.8 支持 OkHttpClient 的 readTimeout 属性 OAuth2FeignRequestInterceptor 配置 AccessTokenProvider 连接器自动负载均衡
Spring Cloud Config
修复文件匹配器 在 JSON 、YAML、properties 格式处理 BUG
Spring Cloud Sleuth
修复 springboot 2.6.x 应用启动失败
TraceId 在线程池之间传递,污染上下文
添加对非 Brave Kafka 消息容器的支持
# 依赖升级
以下模块升级至 2021.0.1