支付回调测试

This commit is contained in:
2024-10-08 17:15:41 +08:00
parent b9cce3bdf1
commit 10f17d521e
5 changed files with 12 additions and 23 deletions

View File

@@ -124,6 +124,7 @@ public class SpringSecurityConfig extends WebSecurityConfigurerAdapter {
.antMatchers(anonymousUrls.get(RequestMethodEnum.ALL.getType()).toArray(new String[0])).permitAll()
.antMatchers("/auth/appletsLogin").permitAll()
.antMatchers("/api/tbHandover").permitAll()
.antMatchers("/notify/fstPay").permitAll()
// 所有请求都需要认证
.anyRequest().authenticated()
.and().apply(securityConfigurerAdapter());