面试流程性能优化处理

This commit is contained in:
2025-11-26 20:17:19 +08:00
parent 0e78ecc1f1
commit 22a15188be
11 changed files with 600 additions and 335 deletions

View File

@@ -112,7 +112,7 @@ public class SecurityConfig
.authorizeHttpRequests((requests) -> {
permitAllUrl.getUrls().forEach(url -> requests.antMatchers(url).permitAll());
// 对于登录login 注册register 验证码captchaImage 允许匿名访问
requests.antMatchers("/login", "/register", "/captchaImage","/aiCommon/**",
requests.antMatchers("/login", "/register", "/captchaImage","/aiCommon/**","/voice-websocket/multiple/**",
"/voice-websocket/**","/voice-websocket-opus/**","/verification/email/send","/verification/email/verify","/verification/phone/send",
"/forgotPassword").permitAll()
// 静态资源,可匿名访问