领先一步
VMware 提供培训和认证,以加速您的进步。
了解更多我谨代表社区宣布,Spring Cloud Hoxton 发布列车的第一个里程碑版本 (M1) 今天已发布。该版本可以在 Spring Milestone 存储库中找到。您可以查看 Hoxton 发布说明 以获取更多信息。
此里程碑版本与 Spring Boot 2.2.0.M4 兼容。
Spring Cloud Gateway 已添加对 RSocket 的支持。敬请关注即将发布的博文了解更多信息。
Gradle 支持已更新至 5.5 版,Groovy 更新至 2.5 版。进行了重大的重构,尽可能简化和重写为 Java。
添加了一个使用 Cloud Foundry 基于 DNS 的发现的选项。这对于容器到容器网络很有用。
添加了对 Google Cloud Source(一个 Git 托管服务)的支持,以及一个新的 Redis 环境存储库。
Sleuth 现在导入 Brave BOM。
Spring Cloud Circuit Breaker 项目将退出孵化器状态。Spring Cloud Loadbalancer 将更新以填补 Ribbon 在 Spring Cloud Netflix 中进入维护模式后留下的漏洞。Spring Cloud Gateway RSocket 支持将继续改进。
以下模块已作为 Hoxton.M1 的一部分更新
| 模块 | 版本 | 问题 |--- |--- |--- |--- | Spring Cloud Commons | 2.2.0.M1 | (问题) | Spring Cloud Contract | 2.2.0.M1 | (问题) | Spring Cloud Cloudfoundry | 2.2.0.M1 | (问题) | Spring Cloud Openfeign | 2.2.0.M1 | (问题) | Spring Cloud Security | 2.2.0.M1 | | Spring Cloud Config | 2.2.0.M1 | (问题) | Spring Cloud Stream | Horsham.M2 | | Spring Cloud Aws | 2.2.0.M1 | | Spring Cloud Bus | 2.2.0.M1 | | Spring Cloud Zookeeper | 2.2.0.M1 | (问题) | Spring Cloud Task | 2.2.0.M1 | (问题) | Spring Cloud Gateway | 2.2.0.M1 | (问题) | Spring Cloud Sleuth | 2.2.0.M1 | (问题) | Spring Cloud Consul | 2.2.0.M1 | (问题) | Spring Cloud Netflix | 2.2.0.M1 | (问题) | Spring Cloud Gcp | 1.2.0.M1 | | Spring Cloud Function | 3.0.0.M1 | | Spring Cloud Vault | 2.2.0.M1 | | Spring Cloud Kubernetes | 1.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>Hoxton.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.9.RELEASE"
}
}
repositories {
maven {
url 'https://repo.spring.io/milestone'
}
}
apply plugin: "io.spring.dependency-management"
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Hoxton.M1'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
...
}