您好,登錄后才能下訂單哦!
初始創建Spring Boot項目,使用thymeleaf作為模板引擎,利用Spring Security進行驗證管理,根據官方例子試驗成功(官方的Spring Security示例)。
然后準備整合頁面直接將html甩到templates目錄下,靜態資源甩到static目錄下。
簡單的測試頁面,發現會報錯如下:
Refused to apply style from 'http://localhost:8080/login' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
剛開始以為是模板引擎的語法寫錯了,后來一理思路,原來直接引入的時候就是好的,那就應該是Spring Security給我把資源攔截了下來。現在要做的就是放行啦。
在WebSecurityConfig配置類中添加如下放行規則:
@Configuration @EnableWebSecurity public class WebSecurityConfig extends WebSecurityConfigurerAdapter { // ... @Override public void configure(WebSecurity web) throws Exception { //解決靜態資源被攔截的問題 web.ignoring().antMatchers("/css/**","/vendors/**"); } }
至此,資源被正確引入啦。
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。