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))); } }); }