91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

固镇县| 澄江县| 资中县| 淮北市| 海丰县| 航空| 凉山| 木里| 惠州市| 修武县| 洪湖市| 长垣县| 侯马市| 屏山县| 宿州市| 水富县| 肇东市| 城口县| 丰台区| 泰兴市| 井研县| 宁南县| 五寨县| 盘锦市| 武夷山市| 钟山县| 同心县| 阿城市| 青阳县| 卢氏县| 衡南县| 阿坝县| 扶沟县| 锡林浩特市| 夹江县| 合山市| 阜阳市| 乌什县| 红原县| 溧阳市| 抚宁县|