基於 Spring Boot 2.x 的 Finchley 版本解析

來源:互聯網
上載者:User
Spring Boot 2.x 已經發布了很久,現在 Spring Cloud 也發布了 基於 Spring Boot 2.x 的 Finchley 版本,現在一起為項目做一次整體架構升級。

升級前 => 升級後

Spring Boot 1.5.x => Spring Boot 2.0.2

Spring Cloud Edgware SR4 => Spring Cloud Finchley.RELEASE

Eureka Server

Eureka Server 依賴更新

升級前:

<dependency>    <groupId>org.springframework.cloud</groupId>    <artifactId>spring-cloud-starter-eureka-server</artifactId></dependency>

升級後:

<dependency>    <groupId>org.springframework.cloud</groupId>    <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId></dependency>

Eureka Client

因為配置中心需要作為服務註冊到註冊中心,所以需要升級 Eureka Client,其他依賴沒有變動。

Eureka Client 依賴更新

升級前:

<dependency>    <groupId>org.springframework.cloud</groupId>    <artifactId>spring-cloud-starter-eureka</artifactId></dependency>

升級後:

<dependency>    <groupId>org.springframework.cloud</groupId>    <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId></dependency>

Spring Cloud

註冊中心裏面的用戶端執行個體IP顯示不正確

因為 Spring Cloud 擷取服務用戶端 IP 位址配置變更了。

升級前:

${spring.cloud.client.ipAddress}

升級後:

${spring.cloud.client.ip-address}

Spring Security

一般註冊中心、配置中心都會使用安全加密,就會依賴 spring-boot-starter-security 組件,升級後有幾下兩個問題。

1、使用者名稱和密碼無法登入

因為 Spring Security 的參數進行了變更。

升級前:

security:  user:    name:    password:

升級後:

spring:  security:     user:       name:        password:

2、註冊中心沒有註冊執行個體

,沒有註冊執行個體,兩個註冊中心無法互相註冊。

因為 Spring Security 預設開啟了所有 CSRF 攻擊防禦,需要禁用 /eureka 的防禦。

在 Application 入口類增加忽略配置:

@EnableWebSecuritystatic class WebSecurityConfig extends WebSecurityConfigurerAdapter {    @Override    protected void configure(HttpSecurity http) throws Exception {        http.csrf().ignoringAntMatchers("/eureka/**");        super.configure(http);    }}

3、配置中心無法加解密

升級後發現訪問配置中心無法讀取到配置,也無法加解密配置資訊,訪問配置中心連結直接跳轉到了登入頁面。

現在想變回之前的 basic auth 認證方式,找源碼發現是自動設定跳到了登入頁面,現在重寫一下。

自動設定源碼:
org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter#configure(org.springframework.security.config.annotation.web.builders.HttpSecurity)
protected void configure(HttpSecurity http) throws Exception {    logger.debug("Using default configure(HttpSecurity). If subclassed this will potentially override subclass configure(HttpSecurity).");    http        .authorizeRequests()            .anyRequest().authenticated()            .and()        .formLogin().and()        .httpBasic();}

重寫之後:

@EnableWebSecuritystatic class WebSecurityConfig extends WebSecurityConfigurerAdapter {    @Override    protected void configure(HttpSecurity http) throws Exception {        http.csrf().ignoringAntMatchers("/**").and().authorizeRequests().anyRequest()                .authenticated().and().httpBasic();    }}

其實就是把 formLogin() 幹掉了,又回到之前的 basic auth 認證方式,如所示。

現在我們又可以使用以下命令加解密了。

恢複 basic auth 之後,之前的服務需要加密串連配置中心的又正常運行了。

Maven

升級到 Spring Boot 2.x 之後發現 Spring Boot 的 Maven 啟動外掛程式不好用了,主要是 Profile 不能自由切換。

升級前:

spring-boot:run -Drun.profiles=profile1

升級後:

spring-boot:run -Dspring-boot.run.profiles=profile1

總結

以上都是踩完所有的坑總結出來的解決方案,實際解決問題的過程遠要複雜的多。版本變化有點大,本次已成功升級了 Spring Cloud 基礎依賴,及註冊中心(Eureka Server)、配置中心(Config Server)。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.