中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用SpringBoot+SpringSecurity 實現不攔截靜態資源

發布時間:2020-11-02 17:20:38 來源:億速云 閱讀:891 作者:Leah 欄目:開發技術

這篇文章運用簡單易懂的例子給大家介紹利用SpringBoot+SpringSecurity 實現不攔截靜態資源,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

一、問題描述

在 SpringBoot 中加入 SpringSecurity 中之后,靜態資源總是被過濾,導致界面很難看:

利用SpringBoot+SpringSecurity 實現不攔截靜態資源

目錄結構:

利用SpringBoot+SpringSecurity 實現不攔截靜態資源

二、問題解決

正常不攔截資源,我查閱資料,基本都是重新 config 方法即可:

package org.yolo.securitylogin.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.builders.WebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
import org.springframework.security.crypto.password.NoOpPasswordEncoder;
import org.springframework.security.crypto.password.PasswordEncoder;

/**
 * @Auther: Yolo
 * @Date: 2020/9/12 13:05
 * @Description:
 */
@Configuration
public class SecurityConfig extends WebSecurityConfigurerAdapter {
  @Bean
  PasswordEncoder passwordEncoder() {
    return NoOpPasswordEncoder.getInstance();
  }

  @Override
  protected void configure(AuthenticationManagerBuilder auth) throws Exception {
    //在內存中進行配置
    auth.inMemoryAuthentication()
        .withUser("yolo")
        .password("123").roles("admin");
  }

  @Override
  public void configure(WebSecurity web) throws Exception {
    //web.ignoring().antMatchers("/static/js/**", "/static/css/**", "/static/images/**");
    web.ignoring().antMatchers("/js/**", "/css/**","/images/**");
  }
  
  @Override
  protected void configure(HttpSecurity http) throws Exception {
    http.authorizeRequests()
        .anyRequest().authenticated()
        .and()
        .formLogin()
        .loginPage("/login.html")
        .permitAll()//跟登錄相關的頁面統統放行
        .and()
        .csrf().disable()
    ;
  }
}

常規方法是:

@Override
  public void configure(WebSecurity web) throws Exception {
    web.ignoring().antMatchers("/js/**", "/css/**","/images/**");
  }

利用SpringBoot+SpringSecurity 實現不攔截靜態資源

這里一定要謹記,這樣配置了 configure,之后,一定要清除 target,不然是不會生效的

利用SpringBoot+SpringSecurity 實現不攔截靜態資源

關于利用SpringBoot+SpringSecurity 實現不攔截靜態資源就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

准格尔旗| 巧家县| 河源市| 苏尼特右旗| 建平县| 五原县| 布拖县| 满城县| 雅安市| 鸡东县| 芒康县| 磴口县| 宁波市| 济源市| 普定县| 开江县| 海南省| 金坛市| 湖州市| 安徽省| 陈巴尔虎旗| 通山县| 宜阳县| 绍兴县| 三都| 皮山县| 南投县| 油尖旺区| 扶风县| 鄂州市| 德州市| 高陵县| 招远市| 沁源县| 日照市| 保定市| 永修县| 墨脱县| 万安县| 五指山市| 瑞金市|