亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

利用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

祁阳县| 岚皋县| 日土县| 兰州市| 建德市| 进贤县| 灯塔市| 山东| 南开区| 台南市| 长宁县| 克山县| 晋中市| 香格里拉县| 砚山县| 扶绥县| 碌曲县| 莆田市| 师宗县| 金寨县| 化州市| 凤庆县| 股票| 静乐县| 徐汇区| 南京市| 民权县| 孟津县| 武穴市| 宿州市| 东海县| 武清区| 麟游县| 咸宁市| 福建省| 隆尧县| 永清县| 太原市| 莱芜市| 略阳县| 湖口县|