節前沒有新業務代碼,正好Greenwich剛發佈,因而開始爲期四天的框架代碼升級。web
以前的版本是 spring boot 1.5.10 , spring cloud Edgware.SR3redis
apply plugin: 'io.spring.dependency-management'
這個改動確實大,返回值變成了Optional,合理是合理的,只改的真多。。spring
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
endpoint的暴露方式變化,management.endpoints.web.exposure.include = "*"
表示暴露全部endpoints,若是配置了security那麼也須要在security的配置中開放訪問/actuator
路徑ide
自動注入的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
.
各個項目在註冊中內心面的客戶端實例IP顯示不正確,須要修改每一個項目的
bootstarp.yml
@spybean
的會調用實際方法因爲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' } }
若是啓用出現error,報bean重複,首先確認是否是故意覆蓋,如重寫spring-boot自帶的bean,如是,能夠在bootstrap.yml加入
spring.main.allow-bean-definition-overriding=true
FeignClient註解增長了contextId屬性
@FeignClient(value = "foo", contextId = "fooFeign")
此contextId即表示bean id,全部注入使用時須要
@Autowried FooFeign fooFeign
若是不寫contextId,當多個class都是@FeignClient("foo"),即會認爲是同一個bean而排除上一條所說的warning