在发布 Spring Cloud Finchley 正式版本后,Spring Cloud 又发布了 Edgware SR4 ,包含大量模块更新:
亮点包括:spring-boot-autoconfigure-processor
Spring Cloud Commons Spring Cloud AWS Spring Cloud Config
Spring Cloud Contract
Spring Cloud Sleuth Spring Cloud Task Spring Cloud Netflix
Spring Cloud Vault Spring Cloud Function
Maven 地址:<dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>Edgware.SR4</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> |