首页固定死的统计展示

This commit is contained in:
2025-06-30 15:24:59 +08:00
parent a0b941e3f7
commit a5de881f9d
12 changed files with 264 additions and 8 deletions

View File

@ -115,6 +115,7 @@ public class SecurityConfig
// 静态资源,可匿名访问
.antMatchers(HttpMethod.GET, "/", "/*.html", "/**/*.html", "/**/*.css", "/**/*.js", "/profile/**").permitAll()
.antMatchers("/swagger-ui.html", "/swagger-resources/**", "/webjars/**", "/*/api-docs", "/druid/**").permitAll()
.antMatchers("/dev-api").permitAll()
// 除上面外的所有请求全部需要鉴权认证
.anyRequest().authenticated();
})