领先一步
VMware 提供培训和认证,助您快速提升技能。
了解更多我谨代表社区宣布,Spring Cloud 2023.0 发布列车的里程碑 1 (M1) 今天已发布。此版本可以在 Spring Milestone 存储库中找到。您可以查看 2023.0 的 发布说明以获取更多信息。
查看所有问题和拉取请求 此处。
以下模块已作为 2023.0.0-M1 的一部分更新
模块 | 版本 | 问题 |
---|---|---|
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 | (问题) |
与往常一样,我们欢迎您在 GitHub、Gitter、Stack Overflow 或 Twitter 上提供反馈。
要使用 Maven 和 BOM(仅依赖项管理)开始
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<dependencyManagement>
<dependencies>
<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>
<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>
或使用 Gradle
plugins {
id 'java'
id 'org.springframework.boot' version '3.2.0-M1'
id 'io.spring.dependency-management' version '1.1.3'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
repositories {
mavenCentral()
maven { url 'https://repo.spring.io/milestone' }
}
ext {
set('springCloudVersion', "2023.0.0-M1")
}
dependencies {
implementation 'org.springframework.cloud:spring-cloud-starter-config'
implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
}
}