From 490a9492607f14414c07f9eed97c7ffffc748703 Mon Sep 17 00:00:00 2001
From: dd <gitluke@outlook.com>
Date: Sun, 26 Oct 2025 01:49:18 +0800
Subject: [PATCH] 1
---
ruoyi-framework/src/main/java/com/ruoyi/framework/config/SecurityConfig.java | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/ruoyi-framework/src/main/java/com/ruoyi/framework/config/SecurityConfig.java b/ruoyi-framework/src/main/java/com/ruoyi/framework/config/SecurityConfig.java
index ff362ec..3ab5a65 100644
--- a/ruoyi-framework/src/main/java/com/ruoyi/framework/config/SecurityConfig.java
+++ b/ruoyi-framework/src/main/java/com/ruoyi/framework/config/SecurityConfig.java
@@ -119,6 +119,12 @@
.antMatchers("/im/user/**").permitAll()
.antMatchers("/im/group/**").permitAll()
.antMatchers("/system/basic/**").permitAll()
+ .antMatchers("/product/**").permitAll()
+ .antMatchers("/insurancePosition/**").permitAll()
+ .antMatchers("/MedicalInsuranceAccount/**").permitAll()
+ .antMatchers("/kyc/**").permitAll()
+ .antMatchers("/userPolicy/**").permitAll()
+ .antMatchers("/system/home/**").permitAll()
// 除上面外的所有请求全部需要鉴权认证
.anyRequest().authenticated();
})
--
Gitblit v1.9.3