Spring Cloud Greenwich 新特性和F升級分享

冷冷gg發表於2019-01-24

2019.01.23 期待已久的Spring Cloud Greenwich 釋出了release版本,作為我們團隊也第一時間把RC版本替換為release,以下為總結,希望對你使用Spring Cloud Greenwich 有所幫助 Greenwich 只支援 Spring Boot 2.1.x 分支。如果使用 2.0.x 請使用Finchley版本,

pom座標

主要是適配JAVA11

<!--支援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>

複製程式碼

升級netflix版本,DiscoveryClient支援獲取InstanceId

image

Spring Cloud Config 提供了新的儲存介質

除了Git、File、JDBC,新版本提供 在Cloud Foundry的CredHub儲存功能

spring:
  profiles:
    active: credhub
  cloud:
    config:
      server:
        credhub:
          url: https://credhub:8844
複製程式碼

Spring Cloud Gateway

支援整合OAuth2

這裡提供了一個例子: Spring Cloud Gateway and Spring Security OAuth2

整合的時候有個坑可以參考這個issue:ReactiveManagementWebSecurityAutoConfiguration Prevent's oauth2Login from being defaulted

新增重寫響應頭過濾器

spring:
  cloud:
    gateway:
      routes:
      - id: rewriteresponseheader_route
        uri: http://example.org
        filters:
        - RewriteResponseHeader=X-Response-Foo, , password=[^&]+, password=***
複製程式碼

Feign 的新特性和坑

@SpringQueryMap 對Get請求進行了增強

Spring Cloud Greenwich 新特性和F升級分享

  1. 終於解決這個問題了
  2. 不用直接使用OpenFeign新增的@QueryMap,由於缺少value屬性 QueryMap註釋與Spring不相容...

異常解決

對Spring Cloud Finchley 進行直接升級時候發現feign啟動報錯了

***************************
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
複製程式碼
  1. 第一種粗暴的解決方法,異常日誌中說明了,在 bootstrap.yml中配置
spring.main.allow-bean-definition-overriding=true
複製程式碼

這是Spring Boot 2.1 後新增的屬性執行bean 覆蓋,不要配置到配置中心裡面,不然無效

  1. 第二種,就是把通過同一個服務呼叫的程式碼,移動到同一個@FeignClient中
  2. contextId ,這個是@FeignClient 新增的一個屬性
This will be used as the bean name instead of name if present, but will not be used as a service id.

複製程式碼

就可以用這個屬性區分@FeigenClient 標誌的同一個service 的介面

總結

  1. Spring Cloud F -- > G 變化很小,微乎其微主要是JAVA11的相容
  2. 很遺憾沒有看到 Spring Cloud Alibaba 加油。
  3. Spring Cloud LoadBalancer 還是老樣子。目前來看暫時無法替代 ribbon
  4. 歡迎加我Q2270033969,討論Spring Cloud ^_^

相關文章