Cloud Native 6 min read

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.

Java Architecture Diary
Java Architecture Diary
Java Architecture Diary
Explore Spring Cloud 2023.0 (Leiden) Milestone: New Features & Maven Setup

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 Gateway
Spring Cloud Gateway

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

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.

cloud-nativeMicroservicesmavenspring-bootspring-cloud
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.