Get ahead
VMware offers training and certification to turbo-charge your progress.
Learn moreOn behalf of the community, I am pleased to announce that the Milestone 1 (M1) of the Spring Cloud Finchley Release Train is available today. The release can be found in Spring Milestone repository. You can check out the Finchley release notes for more information.
Finchley is based on the Spring Boot 2.0.0 line. Finchley.M1 is based on Spring Boot 2.0.0.M2. This is largely a compatibility build with no new features with the exception of Spring Cloud Gateway. Finchley will follow Spring Boot's milestones and release candidates with a corresponding Finchley release soon after. General Availability is targeted for after Spring Boot 2.0 GA, likely in Dec. 2017.
Spring Cloud Gateway is a new API Gateway based on Spring 5, Boot 2 and Project Reactor. It is viewed as a replacement for Zuul 1. Some features include:
Look for a future blog post that will further introduce Spring Cloud Gateway
The following modules were updated as part of Finchley.M1:
Module | Version |
---|---|
Spring Cloud Sleuth | 2.0.0.M1 |
Spring Cloud Cloudfoundry | 2.0.0.M1 |
Spring Cloud Gateway | 2.0.0.M1 |
Spring Cloud Build | 2.0.0.M1 |
Spring Cloud Config | 2.0.0.M1 |
Spring Cloud Consul | 2.0.0.M1 |
Spring Cloud Dependencies | 2.0.0.M1 |
Spring Cloud Netflix | 2.0.0.M1 |
Spring Cloud Task | 1.2.0.RELEASE |
Spring Boot Starter | 2.0.0.M2 |
Spring Cloud Security | 2.0.0.M1 |
Spring Cloud Bus | 2.0.0.M1 |
Spring Cloud Contract | 2.0.0.M1 |
Spring Cloud Aws | 2.0.0.M1 |
Spring Cloud Stream | Elmhurst.M1 |
Spring Cloud Commons | 2.0.0.M1 |
Spring Cloud Zookeeper | 2.0.0.M1 |
Spring Boot | 2.0.0.M2 |
Spring Cloud Vault | 2.0.0.M1 |
And, as always, we welcome feedback: either on GitHub, on Gitter, on Stack Overflow, or on Twitter.
To get started with Maven with a BOM (dependency management only)
<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.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-eureka</artifactId>
</dependency>
...
</dependencies>
or with 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.M1'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-eureka'
...
}