添加功能

This commit is contained in:
马宝龙
2026-07-01 19:37:21 +08:00
parent b8e37f5360
commit 033c0479c2
9 changed files with 588 additions and 1 deletions

View File

@@ -111,6 +111,8 @@ public class SecurityConfig {
requests.antMatchers("/sso/pc/code/login").permitAll()
// 大数据分析先放行
.antMatchers("/analysis/**").permitAll()
// 模型先放行
.antMatchers("/model/**").permitAll()
// 静态资源,可匿名访问
.antMatchers(HttpMethod.GET, "/", "/*.html", "/**/*.html", "/**/*.css", "/**/*.js",
"/profile/**").permitAll()