答案 0 :(得分:-2)
固定。
解决方案如下: 您需要覆盖WebSecurityConfigurerAdapter中的WebSecurity-Configure-Method并排除某个文件夹:如下所示:
@Override
public void configure(final WebSecurity web) throws Exception {
web.ignoring()
.antMatchers("/static/**")
.antMatchers("/images/**")
.antMatchers("/js/**")
.antMatchers("/json/**")
.antMatchers("/inclu/**")
.antMatchers("/lib/**");
}