精品国产人成在线_亚洲高清无码在线观看_国产在线视频国产永久2021_国产AV综合第一页一个的一区免费影院黑人_最近中文字幕MV高清在线视频

0
  • 聊天消息
  • 系統消息
  • 評論與回復
登錄后你可以
  • 下載海量資料
  • 學習在線課程
  • 觀看技術視頻
  • 寫文章/發帖/加入社區
會員中心
創作中心

完善資料讓更多小伙伴認識你,還能領取20積分哦,立即完善>

3天內不再提示

Spring Security 的關鍵配置

科技綠洲 ? 來源:Java技術指北 ? 作者:Java技術指北 ? 2023-09-30 16:10 ? 次閱讀

0. 概述

以前我們配置 SpringSecurity 的方式是繼承 WebSecurityConfigurerAdapter ,然后重寫其中的幾個方法:

@Configuration
public class SecurityConfig extends WebSecurityConfigurerAdapter {
    //配置 Spring Security 中的過濾器鏈
    @Override
    void configure(HttpSecurity http) {}

    //配置路徑放行規則
    @Override
    void configure(WebSecurity web) {}

    //配置本地認證管理器
    @Override
    void configure(AuthenticationManagerBuilder auth) {}

    //配置全局認證管理器
    @Override
    AuthenticationManager authenticationManagerBean() {}
}

目前這個類已經過期,雖然可以繼續使用,但是總覺得別扭。那么它的替代方案是什么?下面我來為大家一一介紹。

1. HttpSecurity

原寫法:

@Override
protected void configure(HttpSecurity http) throws Exception {
    http
        .antMatcher("/**")
        .authorizeRequests(authorize - > authorize
                .anyRequest().authenticated()
        );
}

新寫法:

@Bean
SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
    return http
            .antMatcher("/**")
            .authorizeRequests(authorize - > authorize
                    .anyRequest().authenticated()
            )
            .build();
}

2. WebSecurity

原寫法:

@Override
public void configure(WebSecurity web) {
    web.ignoring().antMatchers("/ignore1", "/ignore2");
}

新寫法:

@Bean
public WebSecurityCustomizer webSecurityCustomizer() {
    return (web) - > web.ignoring().antMatchers("/ignore1", "/ignore2");
}

WebSecurity配置不常使用,如果需要忽略Url,推薦通過 HttpSecurity.authorizeHttpRequestspermitAll 來實現。

3. AuthenticationManager

原寫法:

@Autowired
private UserDetailsService userDetailsService;

@Bean
public BCryptPasswordEncoder bCryptPasswordEncoder() {
    return new BCryptPasswordEncoder();
}

//Local
@Override
protected void configure(AuthenticationManagerBuilder auth) throws Exception {
    auth.userDetailsService(userDetailsService).passwordEncoder(bCryptPasswordEncoder());
}

//Global
@Bean
@Override
public AuthenticationManager authenticationManagerBean() throws Exception {
    return super.authenticationManagerBean();
}

新寫法:

@Autowired
private UserDetailsService userDetailsService;

@Bean
public BCryptPasswordEncoder bCryptPasswordEncoder() {
    return new BCryptPasswordEncoder();
}

//Local
@Bean
public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
    http
        .authorizeHttpRequests((authz) - > authz
            .anyRequest().authenticated()
        )
        .httpBasic(withDefaults())
        .authenticationManager(new CustomAuthenticationManager());
}

//Global
@Bean
public AuthenticationManager authenticationManager(HttpSecurity httpSecurity) throws Exception {
    return httpSecurity.getSharedObject(AuthenticationManagerBuilder.class)
            .userDetailsService(userDetailsService)
            .passwordEncoder(bCryptPasswordEncoder())
            .and()
            .build();
}

4. 心得

技術是不斷迭代的,我們作為技術人員,不能墨守成規,要學會擁抱變化。

聲明:本文內容及配圖由入駐作者撰寫或者入駐合作網站授權轉載。文章觀點僅代表作者本人,不代表電子發燒友網立場。文章及其配圖僅供工程師學習之用,如有內容侵權或者其他違規問題,請聯系本站處理。 舉報投訴
  • spring
    +關注

    關注

    0

    文章

    338

    瀏覽量

    14308
  • 過濾器
    +關注

    關注

    1

    文章

    427

    瀏覽量

    19553
  • Spring Security
    +關注

    關注

    0

    文章

    2

    瀏覽量

    5451
收藏 人收藏

    評論

    相關推薦

    java spring教程

    java spring教程理解Spring 實現原理掌握Spring IOC,AOP掌握Spring的基礎配置和用法熟練使用SSH開發項目
    發表于 09-11 11:09

    什么是java spring

    的事情。然而,Spring的用途不僅限于服務器端的開發。從簡單性、可測試性和松耦合的角度而言,任何Java應用都可以從Spring中受益。Spring是一個容器,它包含并且管理系統對象的生命周期和
    發表于 09-11 11:16

    Spring Cloud Config公共配置解決方案

    Spring Cloud Config 多服務公共配置
    發表于 08-30 09:05

    spring log配置文件概述

    一份不知道抄了多少個地方的spring log配置文件
    發表于 10-12 15:00

    spring4的配置文件解析

    spring4配置文件詳解
    發表于 06-19 11:02

    MVC框架實例—Spring MVC配置

    本文旨在讓您在使用Spring MVC框架配置完成日常工作的時候更加輕松。根據Spring MVC框架配置,為基于本技術開發的項目提供一系列的解決方案。
    發表于 12-14 17:37 ?3168次閱讀

    基于Spring Security安全框架的聯通資源管理系統安全分析

    基于為聯通資源管系統提供一個方便可靠的安全框架的目的,采用面向切面編程(AOP)的Spring Security安全框架,結合了Spring框架提供的控制反轉技術,最終創建了一個功能強大、安全可
    發表于 05-14 11:56 ?0次下載
    基于<b class='flag-5'>Spring</b> <b class='flag-5'>Security</b>安全框架的聯通資源管理系統安全分析

    Spring應用 1 springXML配置說明

    Spring應用 1 springXML配置說明 隱式對Spring容器注冊Process ? context:annotation-config / 為了在spring開發過程中,為
    發表于 01-13 12:20 ?381次閱讀

    spring配置方式詳細介紹

    SH框架風靡整個IT行業,而作為該框架中的管理員,Spring負責管理其他的框架,協調各個部分的工作。那么今天小編就帶大家一起學習Spring配置方法。
    發表于 01-28 10:53 ?1413次閱讀

    微服務配置中心實戰:Spring + MyBatis + Druid + Nacos

    在 結合場景談服務發現和配置 中我們講述了 Nacos 配置中心的三個典型的應用場景,包括如何在 Spring Boot 中使用 Nacos 配置中心將數據庫連接信息管控起來,而在“原
    發表于 12-29 17:09 ?1089次閱讀
    微服務<b class='flag-5'>配置</b>中心實戰:<b class='flag-5'>Spring</b> + MyBatis + Druid + Nacos

    Spring認證」Spring IoC 容器

    Spring 容器是 Spring 框架的核心容器將創建對象,將它們連接到配置中,并管理它們從創建到成熟的生命周期。Spring 容器使用 DI 來管理構建應用程序的組件。
    的頭像 發表于 06-28 13:27 ?734次閱讀
    「<b class='flag-5'>Spring</b>認證」<b class='flag-5'>Spring</b> IoC 容器

    Spring認證是什么?

    ,例如:配置、組件掃描、AOP、數據訪問和事務、REST、安全、自動配置、執行器、 Spring boot測試等。
    的頭像 發表于 07-04 10:19 ?1278次閱讀
    <b class='flag-5'>Spring</b>認證是什么?

    為什么使用spring-authorization-server?

    官方原因:原先使用Spring Security OAuth,而該項目已經逐漸被淘汰,雖然網上還是有不少該方案,但秉著技術要隨時代更新,從而使用spring-authorization-server
    的頭像 發表于 01-09 15:27 ?2096次閱讀

    Spring Boot 3.1 中如何整合Spring Security和Keycloak

    雖然Keycloak 團隊宣布了不再對Spring Security提供適配,但Spring Security長期以來一直為OAuth和OIDC提供強大的內置支持。所以,只要我們理解
    的頭像 發表于 06-08 14:54 ?1101次閱讀
    <b class='flag-5'>Spring</b> Boot 3.1 中如何整合<b class='flag-5'>Spring</b> <b class='flag-5'>Security</b>和Keycloak

    Spring Boot配置加載相關知識

    有: --server.port:指定應用程序的端口號。 --spring.profiles.active:設置應用程序使用的配置文件中的環境配置。 --spring.config.a
    的頭像 發表于 10-07 15:47 ?460次閱讀