From 4eff975b8eb5e31c444f4f3e33033047b7714ec4 Mon Sep 17 00:00:00 2001 From: xujun Date: Sat, 25 Apr 2026 05:48:12 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dbug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/xtools/boot/web/base/filter/CommonFilter.java | 1 - .../main/java/xtools/boot/web/base/filter/LogTrackFilter.java | 1 - 2 files changed, 2 deletions(-) diff --git a/xtools-boot-web/xtools-boot-web-base/src/main/java/xtools/boot/web/base/filter/CommonFilter.java b/xtools-boot-web/xtools-boot-web-base/src/main/java/xtools/boot/web/base/filter/CommonFilter.java index e727d7b..302da22 100644 --- a/xtools-boot-web/xtools-boot-web-base/src/main/java/xtools/boot/web/base/filter/CommonFilter.java +++ b/xtools-boot-web/xtools-boot-web-base/src/main/java/xtools/boot/web/base/filter/CommonFilter.java @@ -49,7 +49,6 @@ public class CommonFilter extends BaseFilter implements Ordered, BaseParams { filterChain.doFilter(request, response); } catch (IOException | ServletException e) { log.error("添加通用ScopedValue异常", e); - HttpServletUtils.respWriter(response, JSONObject.from(new Result<>(ResultType.INTERNAL_SERVER_ERROR, null))); } }); } diff --git a/xtools-boot-web/xtools-boot-web-base/src/main/java/xtools/boot/web/base/filter/LogTrackFilter.java b/xtools-boot-web/xtools-boot-web-base/src/main/java/xtools/boot/web/base/filter/LogTrackFilter.java index a973d96..1d1c5a5 100644 --- a/xtools-boot-web/xtools-boot-web-base/src/main/java/xtools/boot/web/base/filter/LogTrackFilter.java +++ b/xtools-boot-web/xtools-boot-web-base/src/main/java/xtools/boot/web/base/filter/LogTrackFilter.java @@ -71,7 +71,6 @@ public class LogTrackFilter extends BaseFilter implements Ordered, BaseParams { filterChain.doFilter(request, response); } catch (IOException | ServletException e) { log.error("添加日志追踪ScopedValue异常", e); - HttpServletUtils.respWriter(response, JSONObject.from(new Result<>(ResultType.INTERNAL_SERVER_ERROR, null))); } }); }