oAuth2 升級Spring Cloud Finchley.RELEASE踩坑分享

背景

6.19號,spring團隊發佈了期待已久的 Spring Cloud Finchley.RELEASE 版本。
重要變化:git

  • 基於Spring Boot 2.0.X
  • 不兼容 Spring Boot 1.5.X

期間踩過幾個坑,分享出來給大夥,主要是關於 Spring Cloud oAuth 部分redis

目標

基於現有Spring Cloud 腳手架pig開始動手升級。spring

關於pig:

基於Spring Cloud、oAuth2.0開發基於Vue先後分離的開發平臺,支持帳號、短信、SSO等多種登陸,提供配套視頻開發教程。安全

碼雲地址:https://gitee.com/log4j/pig

版本變化

+------------------+
                 |                  |
                 |  1.5.12.RELEASE  |
                 |                  |
                 +--------+---------+
                          |
Spring Boot               |
                          v

                 +------------------+
                 |                  |
                 |  2.0.3.RELEASE   |
                 |                  |
                 +------------------+
+------------------+
                 |                  |
                 |  Edgware.SR3     |
                 |                  |
                 +--------+---------+
                          |
Srping Cloud              |
                          v

                 +------------------+
                 |                  |
                 |  Finchley.RELEASE|
                 |                  |
                 +------------------+

問題總結

PasswordEncoder 變化

直接使用原有代碼報錯:app

passwordencoder mapped for the id null
// 舊
@Bean
public PasswordEncoder passwordEncoder() {
    return new BCryptPasswordEncoder();
}
 
// 新
@Bean
public PasswordEncoder passwordEncoder() {
    return PasswordEncoderFactories.createDelegatingPasswordEncoder();
}

在 Finchley 版本中, 出於安全性的緣由,修改了PasswordEncoder 的生成和使用方法。
在注入bean 的時候不能顯示指定PasswordEncoder的實現類,類比舊方法。只能經過工廠類來建立
imageide

PasswordEncoderFactories.createDelegatingPasswordEncoder();

image
經過傳入密碼的特徵碼,動態去獲取密碼匹配器,這也就意味着保存在同一個庫中密碼能夠使用多種加密方式。spring-boot

{bcrypt}$2a$10$p0JC.ofpM8RxVTSubkKLDOUloGrQAX.lx/67HwnnyumATT69mwYm2

第一部分爲加密方式的特徵碼,支持的類型如上圖,第二部分爲密文。
image
附上官方文檔介紹:https://spring.io/blog/2017/1...加密

RedisTokenStore bug

當受權Auth-Server 配置token 保存在redis 時,報了下面的錯誤。spa

NoSuchMethodError.RedisConnection.set([B[B)V #16

Finchley.RELEASE 依賴的版本爲 2.2.X版本。code

<dependency>
    <groupId>org.springframework.security.oauth</groupId>
    <artifactId>spring-security-oauth2</artifactId>
    <version>2.2.X</version>
</dependency>

升級到 2.3.3版本便可解決Redis操做問題

<!--spring security 、oauth、jwt依賴-->
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-security</artifactId>
    <exclusions>
        <!--舊版本 redis操做有問題-->
        <exclusion>
            <artifactId>spring-security-oauth2</artifactId>
            <groupId>org.springframework.security.oauth</groupId>
        </exclusion>
    </exclusions>
</dependency>

<dependency>
    <groupId>org.springframework.security.oauth</groupId>
    <artifactId>spring-security-oauth2</artifactId>
    <version>2.3.3.RELEASE</version>
</dependency>

Spring Boot Admin 2.0.1

Spring Boot Admin 監控組件也發佈了
兼容Finchley.RELEASE的 2.0.1版本,相較以前版本不一樣,當前版本須要和spring security配合使用
客戶端:
image
image

<dependency>
    <groupId>de.codecentric</groupId>
    <artifactId>spring-boot-admin-starter-client</artifactId>
    <version>2.0.1</version>
</dependency>
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-security</artifactId>
</dependency>
/**
 * @author lengleng
 * @date 2018/6/22
 * 針對監控模塊。所有放行
 */
@Configuration
public class SecurityPermitAllConfig extends WebSecurityConfigurerAdapter {
    @Override
    protected void configure(HttpSecurity http) throws Exception {
        http.authorizeRequests().anyRequest().permitAll()
            .and().csrf().disable();
    }
}

詳細使用我會再分享一篇關於 spring boot admin 2.0.X版本

寫在最後

  • 其餘的升級步驟還挺順風順水,多看一下官方的文檔便可。

http://cloud.spring.io/spring...

相關文章
相關標籤/搜索