领先一步
VMware 提供培训和认证,以加快您的进步。
了解更多我代表社区很高兴地宣布,Spring Cloud 2021发行列车的第一个里程碑版本 (M1) 今日已发布。该版本可以在Spring Milestone 仓库中找到。您可以查看 2021 年的发行说明以了解更多信息。
此版本与 Spring Boot 2.6.0-M1 兼容。
此版本的 GitHub 项目可以在这里找到。
1
而不是0
#2033CacheRequestBodyFilter
#1943TaskJobLauncherCommandLineRunner
并改用TaskJobLauncherApplicationRunner
来为 Spring Boot 2.6 做准备。以下模块已作为 2021.0.0-M1 的一部分更新
模块 | 版本 | 问题 |
---|---|---|
Spring Cloud Consul | 3.1.0-M1 | (问题) |
Spring Cloud Gateway | 3.1.0-M1 | (问题) |
Spring Cloud Zookeeper | 3.1.0-M1 | |
Spring Cloud Sleuth | 3.1.0-M1 | (问题) |
Spring Cloud CLI | 3.1.0-M1 | |
Spring Cloud Starter Build | 2021.0.0-M1 | |
Spring Cloud Bus | 3.1.0-M1 | |
Spring Cloud Vault | 3.1.0-M1 | |
Spring Cloud Commons | 3.1.0-M1 | |
Spring Cloud Openfeign | 3.1.0-M1 | (问题) |
Spring Cloud Kubernetes | 2.1.0-M1 | (问题) |
Spring Cloud Task | 2.4.0-M1 | |
Spring Cloud Config | 3.1.0-M1 | (问题) |
Spring Cloud Netflix | 3.1.0-M1 | |
Spring Cloud Contract | 3.1.0-M1 | |
Spring Cloud Cloudfoundry | 3.1.0-M1 | |
Spring Cloud Circuitbreaker | 2.1.0-M1 |
与以往一样,我们欢迎您在GitHub、Gitter、Stack Overflow或Twitter上提供反馈。
要使用带有 BOM(仅依赖项管理)的 Maven 开始使用
<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>2021.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
buildscript {
dependencies {
classpath "io.spring.gradle:dependency-management-plugin:1.0.2.RELEASE"
}
}
repositories {
maven {
url 'https://repo.spring.io/milestone'
}
}
apply plugin: "io.spring.dependency-management"
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-dependencies:2021.0.0-M1'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
...
}