领先一步
VMware 提供培训和认证,以加快您的进步。
了解更多我代表社区,高兴地宣布 Spring Cloud Finchley 发布列车的里程碑版本 9 (M9) 今日已发布。可以在 Spring 里程碑 仓库中找到该版本。您可以查看 Finchley 的 发布说明以了解更多信息。
1.8.7
以解决启用 Eureka 健康检查时的线程池问题增加了 删除 Git 仓库中未跟踪的本地分支 的功能
支持 YAML 配置复合仓库
以下模块已作为 Finchley.M9 的一部分进行了更新
模块 | 版本 |
---|---|
Spring Cloud Consul | 2.0.0.M7 |
Spring Cloud Zookeeper | 2.0.0.M7 |
Spring Cloud Gateway | 2.0.0.M9 |
Spring Cloud Build | 2.0.0.RC2 |
Spring Boot | 2.0.0.RELEASE |
Spring Cloud Aws | 2.0.0.M4 |
Spring Cloud Bus | 2.0.0.M7 |
Spring Cloud Netflix | 2.0.0.M8 |
Spring Cloud Sleuth | 2.0.0.M9 |
Spring Cloud Contract | 2.0.0.M8 |
Spring Cloud Cloudfoundry | 2.0.0.M3 |
Spring Cloud Security | 2.0.0.M3 |
Spring Cloud Commons | 2.0.0.M9 |
Spring Cloud Config | 2.0.0.M9 |
Spring Cloud Task | 2.0.0.M3 |
Spring Cloud Stream | Elmhurst.RC3 |
Spring Boot Starter | 2.0.0.RELEASE |
Spring Cloud Openfeign | 2.0.0.M2 |
Spring Cloud Vault | 2.0.0.M6 |
与往常一样,我们欢迎您在 GitHub、Gitter、Stack Overflow 或 Twitter 上提供反馈。
要使用带有 BOM 的 Maven 开始(仅限依赖管理)
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>http://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>Finchley.M9</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 'http://repo.spring.io/milestone'
}
}
apply plugin: "io.spring.dependency-management"
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Finchley.M9'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
...
}