tj
2025-04-11 f71719bf3e2b433b790cfaa83265611faf1f1a1c
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();//配置访问控制,必须认证过后才可以访问
    }