Cloud Native 2 min read

What’s New in Spring Cloud Greenwich SR4? Key Updates and Dependency Changes

Spring Cloud Greenwich SR4 has been released, upgrading the underlying Spring Boot to 2.1.10, adding LoadBalancer support to Gateway, removing @EnableDiscoveryClient, updating OpenFeign to 10.4.0 with Google HTTP Client and JDK Proxy support, fixing bugs, and providing pom dependency changes.

Java Architecture Diary
Java Architecture Diary
Java Architecture Diary
What’s New in Spring Cloud Greenwich SR4? Key Updates and Dependency Changes

Spring Cloud Greenwich SR4 has been released and is available on Maven Central.

Important Changes

Underlying dependencies have been upgraded to Spring Boot 2.1.10.RELEASE.

Spring Cloud Gateway

Added support for Spring Cloud LoadBalancer

Spring Cloud Commons

@EnableDiscoveryClient is no longer required; only the DiscoveryClient dependency is needed for registration with a service discovery server.

Spring Cloud OpenFeign

Upgraded to OpenFeign 10.4.0

Added support for Google HTTP Client

Added support for JDK Proxy (important)

Other modules bug fixes

Modules such as Spring Cloud Kubernetes, Spring Cloud Contract, Spring Cloud Vault, Spring Cloud Sleuth, and Spring Cloud Config are included.

pom Changes

<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>
Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

Spring BootSpring CloudOpenFeignGreenwich SR4
Java Architecture Diary
Written by

Java Architecture Diary

Committed to sharing original, high‑quality technical articles; no fluff or promotional content.

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.