From 0d8d4a13e39cc35699c03b22e42576fbcc2d1df8 Mon Sep 17 00:00:00 2001 From: tj <1378534974@qq.com> Date: 星期四, 29 五月 2025 11:35:56 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- src/main/java/com/mzl/flower/config/ResourceServerConfig.java | 4 ++++ 1 files changed, 4 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 249e5d4..7b8a330 100644 --- a/src/main/java/com/mzl/flower/config/ResourceServerConfig.java +++ b/src/main/java/com/mzl/flower/config/ResourceServerConfig.java @@ -55,6 +55,8 @@ .antMatchers("/api/customer/flower/list/view").permitAll() .antMatchers("/api/customer/flower/up/stock").permitAll() .antMatchers("/api/filmset/**").permitAll() + .antMatchers("/api/filmWorks/**").permitAll() + .antMatchers("/api/filmLocation/**").permitAll() .antMatchers("api/pub/customer/home/**").permitAll() .antMatchers("/api/customer/point/goods/**").permitAll() .antMatchers("/api/upload/oss/file").permitAll() @@ -73,6 +75,8 @@ // 短信 .antMatchers("/v2/tos/sms/**").permitAll() + .antMatchers("/api/film/category/list").permitAll() + .antMatchers("/api/**").authenticated();//配置访问控制,必须认证过后才可以访问 } -- Gitblit v1.9.3