2019.01.23 期待已久的Spring Cloud Greenwich 发布了release版本,做为咱们团队也第一时间把RC版本替换为release,如下为总结,但愿对你使用Spring Cloud Greenwich 有所帮助 Greenwich 只支持 Spring Boot 2.1.x 分支。若是使用 2.0.x 请使用Finchley版本,git
主要是适配JAVA11github
<!--支持Spring Boot 2.1.X-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.1.2.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!--Greenwich.RELEASE-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Greenwich.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
复制代码
除了Git、File、JDBC,新版本提供 在Cloud Foundry的CredHub存储功能spring
spring:
profiles:
active: credhub
cloud:
config:
server:
credhub:
url: https://credhub:8844
复制代码
这里提供了一个例子: Spring Cloud Gateway and Spring Security OAuth2bootstrap
整合的时候有个坑能够参考这个issue:ReactiveManagementWebSecurityAutoConfiguration Prevent's oauth2Login from being defaultedbash
spring:
cloud:
gateway:
routes:
- id: rewriteresponseheader_route
uri: http://example.org
filters:
- RewriteResponseHeader=X-Response-Foo, , password=[^&]+, password=***
复制代码
对Spring Cloud Finchley 进行直接升级时候发现feign启动报错了ide
***************************
APPLICATION FAILED TO START
***************************
Description:
The bean 'pigx-upms-biz.FeignClientSpecification', defined in null, could not be registered. A bean with that name has already been defined in null and overriding is disabled.
Action:
Consider renaming one of the beans or enabling overriding by setting spring.main.allow-bean-definition-overriding=true
Process finished with exit code 1
复制代码
bootstrap.yml
中配置spring.main.allow-bean-definition-overriding=true
复制代码
这是Spring Boot 2.1 后新增的属性运行bean 覆盖,不要配置到配置中内心面,否则无效spring-boot
This will be used as the bean name instead of name if present, but will not be used as a service id.
复制代码
就能够用这个属性区分@FeigenClient 标志的同一个service 的接口ui