領先一步
VMware 提供培訓與認證,加速您的進展。
深入了解我謹代表社群宣布,Spring Cloud Greenwich Release Train 的 Service Release 1 (SR1) 今天正式發布。此版本可在 Maven Central 找到。您可以查看 Greenwich 發行說明以取得更多資訊。
下列模組已更新,作為 Greenwich.SR1 的一部分
| 模組 | 版本 | 問題 |--- |--- |--- |--- | Spring Cloud Netflix | 2.1.1.RELEASE | (問題) | Spring Cloud Stream | Fishtown.SR2 | | Spring Cloud Gcp | 1.1.1.RELEASE | | Spring Cloud Cloudfoundry | 2.1.1.RELEASE | (問題) | Spring Cloud Build | 2.1.3.RELEASE | (問題) | Spring Cloud Commons | 2.1.1.RELEASE | (問題) | Spring Cloud | Greenwich.SR1 | | Spring Cloud OpenFeign | 2.1.1.RELEASE | (問題) | Spring Cloud Task | 2.1.1.RELEASE | | Spring Cloud Sleuth | 2.1.1.RELEASE | (問題) | Spring Cloud Aws | 2.1.1.RELEASE | | Spring Cloud Release | Greenwich.SR1 | | Spring Cloud Zookeeper | 2.1.1.RELEASE | | Spring Cloud Bus | 2.1.1.RELEASE | (問題) | Spring Cloud Vault | 2.1.1.RELEASE | (問題) | Spring Cloud Kubernetes | 1.0.1.RELEASE | (問題) | Spring Cloud Dependencies | Greenwich.SR1 | | Spring Cloud Contract | 2.1.1.RELEASE | (問題) | Spring Cloud Consul | 2.1.1.RELEASE | (問題) | Spring Cloud Gateway | 2.1.1.RELEASE | (問題) | Spring Cloud Function | 2.0.1.RELEASE | (問題) | Spring Cloud Starter | Greenwich.SR1 | | Spring Cloud Config | 2.1.1.RELEASE | (問題) | Spring Cloud Security | 2.1.2.RELEASE |
一如既往,我們歡迎您在 GitHub、Gitter、Stack Overflow 或 Twitter 上提供意見回饋。
若要開始使用 Maven 和 BOM (僅限相依性管理)
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Greenwich.SR1</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"
}
}
apply plugin: "io.spring.dependency-management"
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Greenwich.SR1'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
...
}