From f71719bf3e2b433b790cfaa83265611faf1f1a1c Mon Sep 17 00:00:00 2001 From: tj <1378534974@qq.com> Date: 星期五, 11 四月 2025 17:38:06 +0800 Subject: [PATCH] 1.账户注销等 --- src/main/java/com/mzl/flower/config/ResourceServerConfig.java | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/mzl/flower/config/ResourceServerConfig.java b/src/main/java/com/mzl/flower/config/ResourceServerConfig.java index d3ed76c..9dc9ce7 100644 --- a/src/main/java/com/mzl/flower/config/ResourceServerConfig.java +++ b/src/main/java/com/mzl/flower/config/ResourceServerConfig.java @@ -54,6 +54,7 @@ .antMatchers("/api/customer/flower/list").permitAll() .antMatchers("/api/customer/flower/list/view").permitAll() .antMatchers("/api/customer/flower/up/stock").permitAll() +// .antMatchers("/api/customer/info/**").permitAll() .antMatchers("api/pub/customer/home/**").permitAll() .antMatchers("/api/customer/point/goods/**").permitAll() .antMatchers("/api/upload/oss/file").permitAll() @@ -64,6 +65,11 @@ .antMatchers("/api/v2/coupon/app/home/alert").permitAll() .antMatchers("/v2/config-param/base/info").permitAll() .antMatchers("/api/supplier/**").permitAll() + .antMatchers("/api/customer/center").permitAll() + +// 微信支付暂时测试 + .antMatchers("/v2/wechat/**").permitAll() + .antMatchers("/api/**").authenticated();//配置访问控制,必须认证过后才可以访问 } -- Gitblit v1.9.3