初始创建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') isnot 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/**");
}
}