Explore Spring Cloud 2023.0 (Leiden) Milestone: New Features & Maven Setup
Spring Cloud 2023.0 (Leiden) milestone, built on Spring Boot 3.2, introduces updated dependencies, repository configurations, and early support for MVC Server in Spring Cloud Gateway, enhanced Kafka Streams handling in Spring Cloud Stream, Java HttpClient in OpenFeign, and upgraded Kubernetes integration, with source code and deployment links provided.
Spring Cloud 2023.0 (Leiden) milestone has been released, built on Spring Boot 3.2.
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>3.2.0-M1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- spring cloud dependency -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>2023.0.0-M1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>PIG microservice platform now supports Spring Boot 3.2 and Spring Cloud 2023.
Source code can be downloaded from https://gitee.com/log4j/pig.git -b 2023 , and deployment instructions are available at https://www.yuque.com/pig4cloud/pig/yhixg0ol9cp4qbb8 .
Spring Cloud Gateway
Initial support for MVC Server has been added; see PR 2949 and Issue 36 for details.
Spring Cloud Stream
Added a special processor for early support of error handling for the runtime Kafka Streams binder, improved Kafka binder health checks, and enhanced partition handling.
Spring Cloud OpenFeign
Now supports Java HttpClient (issue #689).
Spring Cloud Kubernetes
Upgraded fabric8 to version 6.7.2 (issue #1373).
The following modules are part of the 2023.0.0-M1 release and have been updated:
Module
Version
Spring Cloud Consul
4.1.0-M1
Spring Cloud Gateway
4.1.0-M1
Spring Cloud Zookeeper
4.1.0-M1
Spring Cloud Bus
4.1.0-M1
Spring Cloud Stream
4.1.0-M1
Spring Cloud Function
4.1.0-M1
Spring Cloud Openfeign
4.1.0-M1
Spring Cloud Vault
4.1.0-M1
Spring Cloud Commons
4.1.0-M1
Spring Cloud Task
3.1.0-M1
Spring Cloud Kubernetes
3.1.0-M1
Spring Cloud Starter Build
2023.0.0-M1
Spring Cloud Config
4.1.0-M1
Spring Cloud Build
4.1.0-M1
Spring Cloud Netflix
4.1.0-M1
Spring Cloud Circuitbreaker
3.1.0-M1
Spring Cloud Contract
4.1.0-M1
Signed-in readers can open the original source through BestHub's protected redirect.
This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactand we will review it promptly.
Java Architecture Diary
Committed to sharing original, high‑quality technical articles; no fluff or promotional content.
How this landed with the community
Was this worth your time?
0 Comments
Thoughtful readers leave field notes, pushback, and hard-won operational detail here.
