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("签名验证失败,存在非法字符"); } }