Spring Boot 2.1.2 & Spring Cloud Greenwich 升級記錄

節前沒有新業務代碼,正好Greenwich剛發佈,因而開始爲期四天的框架代碼升級。web

以前的版本是 spring boot 1.5.10 , spring cloud Edgware.SR3redis

依賴升級

  • 增長依賴管理插件 apply plugin: 'io.spring.dependency-management'
  • spring-cloud-starter-eureka → spring-cloud-starter-netflix-eureka-client
  • spring-cloud-starter-feign → spring-cloud-starter-openfeign
  • gradle版本要求4.4

boot : spring-boot-starter-data-jpa

  • delete → deleteById
  • findone → findById

    這個改動確實大,返回值變成了Optional,合理是合理的,只改的真多。。spring

boot : spring-boot-starter-data-redis

Jedis → Lettuceapache

還好並無使用它的autoconfiguration,配置上有一個小坑,Jedis的redis.timeout是表示connection timeout, 而Lettuce是表示command timeout,以前配置成0的,若是set到Lettuce的commandtimeout裏面那就要拋異常了。bootstrap

配置:

能夠在build.gradle中加入,啓動時會檢查配置是否兼容app

compile "org.springframework.boot:spring-boot-properties-migrator"

注意:完成遷移後須要刪除框架

圖片描述

警告如上圖會告知最新的配置格式maven

boot: spring-boot-starter-actuator

endpoint的暴露方式變化,management.endpoints.web.exposure.include = "*" 表示暴露全部endpoints,若是配置了security那麼也須要在security的配置中開放訪問/actuator路徑ide

boot: spring-boot-starter-security

自動注入的AuthenticationManager可能會找不到spring-boot

If you want to expose Spring Security’s AuthenticationManager as a bean, override the authenticationManagerBean method on your WebSecurityConfigurerAdapter and annotate it with @Bean.

cloud : eureka

各個項目在註冊中內心面的客戶端實例IP顯示不正確,須要修改每一個項目的

bootstarp.yml

  • ${spring.cloud.client.ipAddress} → ${spring.cloud.client.ip-address}

boot: spring-boot-starter-test:

  • org.mockito.Matchers → org.mockito.ArgumentMatchers 注意build時的warning
  • Mock方法時請使用Mocikto.doReturn(...).when(...),不使用when(...).thenReturn(...),不然@spybean的會調用實際方法

其餘問題

  1. 版本升級後會有deprecated的類或方法,因此要注意看console中build的warning信息
  2. 因爲spring cloud依賴管理插件強制cuator升級到4.0.1,致使咱們使用的elestic-job不能正常工做,只能強行控制版本。

    dependencyManagement {
        imports {
            mavenBom "org.springframework.cloud:spring-cloud-dependencies:${SPRING_CLOUD_VERSION}"
        }
        dependencies {
            dependency 'org.apache.curator:curator-framework:2.10.0'
            dependency 'org.apache.curator:curator-recipes:2.10.0'
            dependency 'org.apache.curator:curator-client:2.10.0'
        }
    }
  3. 若是啓用出現error,報bean重複,首先確認是否是故意覆蓋,如重寫spring-boot自帶的bean,如是,能夠在bootstrap.yml加入

    spring.main.allow-bean-definition-overriding=true
  4. FeignClient註解增長了contextId屬性

    @FeignClient(value = "foo", contextId = "fooFeign")

    此contextId即表示bean id,全部注入使用時須要

    @Autowried
    FooFeign fooFeign

    若是不寫contextId,當多個class都是@FeignClient("foo"),即會認爲是同一個bean而排除上一條所說的warning

相關文章
相關標籤/搜索