Spring Cloud Greenwich.SR4釋出
阿新 • • 發佈:2020-06-24
Spring Cloud Greenwich Release Train 的Service Release 4(SR4)現已釋出。
該版本可以在MaveCentral中找到。您可以檢視Greenwich 發行說明以獲取更多資訊。
Spring Cloud Greenwich.SR4底層依賴升級至Spring Boot 2.1.10.RELEASE
- Spring Cloud Gateway
添加了對Spring Cloud LoadBalancer的支援 - Spring Cloud Commons
@EnableDiscoveryClient不再需要。只需要DiscoveryClient 依賴,Spring Boot應用程式向服務發現伺服器註冊。
- Spring Cloud Openfeign
升級到OpenFeign 10.4.0
支援 Google HTTP Client
支援 JDK Proxy (重要)
- 其他模組 bug fix
Spring Cloud Kubernetes
Spring Cloud Contract
Spring Cloud Vault
Spring Cloud Sleuth
Spring Cloud Config複製程式碼
pom
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Greenwich.SR4</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>複製程式碼