From ee4ad7e83140e761f898c0328f8b6a5dacbed4ac Mon Sep 17 00:00:00 2001 From: "liang.chao" <1360241448@qq.com> Date: Wed, 29 Oct 2025 10:28:07 +0800 Subject: [PATCH] =?UTF-8?q?bug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../bonus/framework/interceptor/ReplayAttackInterceptor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bonus-framework/src/main/java/com/bonus/framework/interceptor/ReplayAttackInterceptor.java b/bonus-framework/src/main/java/com/bonus/framework/interceptor/ReplayAttackInterceptor.java index 2467f16..cf3a41a 100644 --- a/bonus-framework/src/main/java/com/bonus/framework/interceptor/ReplayAttackInterceptor.java +++ b/bonus-framework/src/main/java/com/bonus/framework/interceptor/ReplayAttackInterceptor.java @@ -238,7 +238,7 @@ public class ReplayAttackInterceptor implements HandlerInterceptor { if (calculatedSignature.equals(receivedSignature)) { return true; } else { - throw new RuntimeException("签名验证失败," + requestUrl + "存在非法字符"); + throw new RuntimeException("签名验证失败,存在非法字符"); } }