feat: 拦截器命名调整

dev
zhanglei 2026-07-06 11:38:52 +08:00
parent 55fb199fad
commit 83ac2c8b0a
1 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ import javax.servlet.http.HttpServletResponse;
*/ */
@Configuration @Configuration
@Slf4j @Slf4j
public class GbsUserSyncConfig implements WebMvcConfigurer { public class GbsUserSyncInterceptor implements WebMvcConfigurer {
@Autowired @Autowired
private AccountMapper accountMapper; private AccountMapper accountMapper;
@ -60,6 +60,6 @@ public class GbsUserSyncConfig implements WebMvcConfigurer {
Object handler, Exception exception) { Object handler, Exception exception) {
} }
}).addPathPatterns("/**"); }).addPathPatterns("/**").order(2);
} }
} }