From 1e9f6d816fed87ffabdbbb3becff4af03b08d94f Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Sun, 04 Jan 2026 16:22:35 +0800
Subject: [PATCH] refactor(symbols): 移除K线数据加载中的冗余日志记录

---
 src/main/java/com/xcong/excoin/configurations/security/WebSecurityConfig.java |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/src/main/java/com/xcong/excoin/configurations/security/WebSecurityConfig.java b/src/main/java/com/xcong/excoin/configurations/security/WebSecurityConfig.java
index aeacb24..5ce1f29 100644
--- a/src/main/java/com/xcong/excoin/configurations/security/WebSecurityConfig.java
+++ b/src/main/java/com/xcong/excoin/configurations/security/WebSecurityConfig.java
@@ -45,7 +45,7 @@
                 .antMatchers("/v2/**").permitAll()
                 .antMatchers("/api/symbols/**").permitAll()
                 .antMatchers("/common/**").permitAll()
-                .antMatchers("/kline/**").permitAll()
+                .antMatchers("/kline/**/**").permitAll()
                 .antMatchers("/api/exchange/**").permitAll()
                 .antMatchers("/api/member/getMemberAccountInfo").permitAll()
                 .antMatchers("/api/member/memberForgetPwd").permitAll()
@@ -57,6 +57,7 @@
                 .antMatchers("/api/orderCoin/findCollect").permitAll()
                 .antMatchers("/api/documentary/getFollowTraderProfitInfo").permitAll()
                 .antMatchers("/api/helpCenter/**").permitAll()
+                .antMatchers("/ws/v5/**").permitAll()
                 .anyRequest().authenticated()
                 .and().apply(securityConfiguereAdapter());
     }

--
Gitblit v1.9.1