This commit is contained in:
van
2026-06-10 14:27:07 +08:00
parent 67e6723685
commit 8d3f1337e9
7 changed files with 297 additions and 0 deletions

View File

@@ -114,6 +114,8 @@ public class SecurityConfig
requests.antMatchers("/login", "/register", "/captchaImage").permitAll()
// 公开接口,允许匿名访问
.antMatchers("/public/**").permitAll()
// 开放页面接口(京东等),允许匿名访问
.antMatchers("/open/**").permitAll()
// 腾讯文档OAuth回调接口允许匿名访问
.antMatchers("/jarvis/tendoc/oauth/callback").permitAll()
// 腾讯文档OAuth回调接口备用路径允许匿名访问