Spring MVC HandlerInterceptor 拦截请求及响应体

Spring MVC HandlerInterceptor 拦截请求及响应体

使用Spring MVC HandlerInterceptor拦截请求和响应体的实现方案。

通过自定义LoggingInterceptorpreHandlepostHandleafterCompletion方法中记录请求信息,并利用RequestBodyCachingFilter缓存请求体以便多次读取。

具体步骤:

  1. 使用InterceptorRequest对象存储请求信息;
  2. 通过Filter实现请求体缓存;
  3. 使用RequestWrapper处理一次性读取的InputStream问题。

该方案适用于需要记录完整请求/响应信息的应用场景。

  • 前期想法
java 复制代码
@Slf4j
public class LoggingInterceptor implements HandlerInterceptor {
    // create a InterceptorRequest object to store request info
    
    @Override
    public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
        // save request header, request body into InterceptorRequest
        // set InterceptorRequest into request attribute, eg "InterceptorRequest"
        log.info("preHandle");
        return true;
    }

    @Override
    public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) throws Exception {
        log.info("postHandle");
    }

    @Override
    public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception {
        // get InterceptorRequest from request attribute "InterceptorRequest"
        // update response body, response code into InterceptorRequest
        // save into persistence system
        if (null == ex) {
            log.info("afterCompletion");
        } else {            
            log.error("afterCompletion -ex - {}", ex.getMessage());
        }
    }
}
  • 将请求结果一次性塞入持久层
java 复制代码
@Slf4j
public class LoggingInterceptor implements HandlerInterceptor {

    // create a InterceptorRequest object to store request info
    // ...

	// update code as below
    @Override
    public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception {
        // get InterceptorRequest from request attribute "InterceptorRequest"
        // update response body, response code into InterceptorRequest
        // save into persistence system
    }
}
  • 使用 Filter 拦截获取Request Body,获取请求体
java 复制代码
@Slf4j
public class HttpRequestContext {
    public static String getRequestBody(ServletRequest request) {
        StringBuilder builder = new StringBuilder();
        try (InputStream inputStream = request.getInputStream();
             BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream, StandardCharsets.UTF_8))) {

            String line;
            while ((null != (line = reader.readLine()))) {
                builder.append(line);
            }
        } catch (IOException e) {
            log.warn("Error reading request body", e);
            throw new RuntimeException(e);
        }
        return builder.toString();
    }
}
java 复制代码
/**
 * It is a filter class used to cache request bodies, commonly employed in web applications,
 * especially when handling POST or PUT requests. Since the input stream (InputStream) of an **HTTP request**
 * can only be read once, it is necessary to cache the request body in scenarios where the content
 * of the request body needs to be accessed multiple times (such as logging, verification, filtering, etc.).
 */
@Slf4j
public class RequestBodyCachingFilter implements Filter {
    @Override
    public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
        String requestId = request.getAttribute("requestId")
        if (null == requestId) {
            requestId  = UUID.randomUUID().toString().replaceAll("-", "");
        }
        MDC.put("requestId", requestId);
        ContentCachingResponseWrapper responseWrapper = new ContentCachingResponseWrapper((HttpServletResponse) response);
        try {
            // Wrap the request to cache the request body
            ServletRequest requestWrapper = new RequestWrapper((HttpServletRequest) request);
            chain.doFilter(requestWrapper, responseWrapper);
        } finally {
            responseWrapper.copyBodyToResponse();
            MDC.remove("requestId");
        }
    }

    @Getter
    static class RequestWrapper extends ContentCachingRequestWrapper {
        private final String requestBody;

        public RequestWrapper(HttpServletRequest request) {
            super(request);
            requestBody = HttpRequestContext.getRequestBody(request);
        }

        @Override
        public ServletInputStream getInputStream() throws IOException {
            // Return a ServletInputStream that reads from the cached request body
            final ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream(requestBody.getBytes());

            return new ServletInputStream() {
                @Override
                public int read() throws IOException {
                    return byteArrayInputStream.read();
                }

                @Override
                public boolean isFinished() {
                    return false;
                }

                @Override
                public boolean isReady() {
                    return false;
                }

                @Override
                public void setReadListener(ReadListener listener) {
                }
            };
        }
    }
}

需要将自定义的Filter注册到FilterRegistrationBean

java 复制代码
    @Bean
    public FilterRegistrationBean<RequestBodyCachingFilter> requestBodyCachingFilter() {
        FilterRegistrationBean<RequestBodyCachingFilter> registration = new FilterRegistrationBean<>();
        registration.setFilter(new RequestBodyCachingFilter());
        registration.addUrlPatterns("/*");
        registration.setOrder(1);
        return registration;
    }
  • 统一接口封装响应实体
java 复制代码
@Getter
@Setter
public class ApiObj<T> {

    private  String code;
    private  String message;
    private  T data;

    public ApiObj(String code, String message, T data) {
        this.code = code;
        this.data = data;
        this.message = message;
    }

    public static <T> ApiObj<T> success(T data) {
        return new ApiObj<>("200", "success", data);
    }

    public static <T> ApiObj<T> failure(String code, String message) {
        return new ApiObj<>(code, message, null);
    }
}
java 复制代码
封装异常返回。这样返回结果可以与对外接口提供的数据一致。
@Slf4j
@Order(Ordered.HIGHEST_PRECEDENCE)
@RestControllerAdvice
public class GlobalException {

    static final ObjectMapper objectMapper = new ObjectMapper();


    @ExceptionHandler(MethodArgumentNotValidException.class)
    public ResponseEntity<ApiObj<String>> handleValidationExceptions(MethodArgumentNotValidException ex) throws JsonProcessingException {
        log.error("handleValidationExceptions - {}", ex.getMessage());
        Map<String, String> errors = new HashMap<>();
        ex.getBindingResult().getAllErrors().forEach((error) -> {
            String fieldName = ((FieldError) error).getField();
            String errorMessage = error.getDefaultMessage();
            errors.put(fieldName, errorMessage);
        });
        String message = objectMapper.writeValueAsString(errors);
        return new ResponseEntity<>(ApiObj.failure(String.valueOf(HttpStatus.BAD_REQUEST.value()), message), HttpStatus.BAD_REQUEST);
    }

    @ExceptionHandler(value = Exception.class)
    public ResponseEntity<ApiObj<String>> defaultErrorHandler(HttpServletRequest req, Exception e) throws Exception {
        log.error("defaultErrorHandler - {}", e.getMessage());
        Map<String, String> map = Map.of("k1", "k2");
        String message = objectMapper.writeValueAsString(map);
        return new ResponseEntity<>(ApiObj.failure(String.valueOf(HttpStatus.BAD_REQUEST.value()), message), HttpStatus.BAD_REQUEST);

    }

    @ExceptionHandler(value = IOException.class)
    public ResponseEntity<ApiObj<String>> defaultIOException(HttpServletRequest req, IOException e) throws Exception {
        log.error("defaultIOException - {}", e.getMessage());
        Map<String, String> map = Map.of("k3", "k4");
        String message = objectMapper.writeValueAsString(map);
        return new ResponseEntity<>(ApiObj.failure(String.valueOf(HttpStatus.BAD_REQUEST.value()), message), HttpStatus.BAD_REQUEST);
    }
}

= 完整更新 LoggingInterceptor

java 复制代码
@Slf4j
public class LoggingInterceptor implements HandlerInterceptor {

    final static String INTERNAL_REQUEST_BODY = "INTERNAL_REQUEST_BODY";

    @Override
    public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
        // save request header, request body into InterceptorRequest
        // set InterceptorRequest into request attribute, eg "InterceptorRequest"
        log.info("preHandle");
        String requestBody = HttpRequestContext.getRequestBody(request);
        log.info("Request Body: {}", requestBody);
        request.setAttribute(INTERNAL_REQUEST_BODY, requestBody);
        return true;
    }

    @Override
    public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) throws Exception {
        log.info("postHandle");
    }

    @Override
    public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception {
        // get InterceptorRequest from request attribute "InterceptorRequest"
        // update response body, response code into InterceptorRequest
        // save into persistence system
        log.info("afterCompletion");
        String requestBody = (String) request.getAttribute(INTERNAL_REQUEST_BODY);
        log.info("Request Body: {}", requestBody);


        if (response instanceof ContentCachingResponseWrapper responseWrapper) {
            byte[] responseBody = responseWrapper.getContentAsByteArray();
            String responseBodyStr = new String(responseBody, response.getCharacterEncoding());
            log.info("Response Body: {}", responseBodyStr);
            // write response body to response
            responseWrapper.copyBodyToResponse();
        }

        request.removeAttribute(INTERNAL_REQUEST_BODY);
    }
}

logback-spring.xml

%X{requestId:-MISSING} 输出MDC requestId

xml 复制代码
<configuration>
    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
        <encoder>
            <pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %X{requestId:-MISSING} %logger{36} - %msg%n</pattern>        </encoder>
    </appender>

    <root level="info">
        <appender-ref ref="STDOUT" />
    </root>
</configuration>
相关推荐
李贺梖梖7 小时前
SpringMVC初始
springmvc
姜飞祥8 天前
springboot图片上传,且同时压缩图片
springboot
_Yoke8 天前
Java 枚举多态在系统中的实战演进:从枚举策略到自动注册
java·springboot·策略模式
韩立学长12 天前
【开题答辩实录分享】以《走失人口系统档案的设计与实现》为例进行答辩实录分享
mysql·mybatis·springboot
炫彩@之星12 天前
浅析SpringBoot框架常见未授权访问漏洞
springboot·未授权访问
请叫我头头哥12 天前
SpringBoot进阶教程(八十七)数据压缩
springboot
wxr061614 天前
部署Spring Boot项目+mysql并允许前端本地访问的步骤
前端·javascript·vue.js·阿里云·vue3·springboot
学编程的小鬼16 天前
SpringBoot日志
java·后端·springboot
小霞在敲代码17 天前
SpringBoot + RabbitMQ 消息队列案例
消息队列·springboot
老朋友此林18 天前
一文快速入门 MongoDB 、MongoDB 8.2 下载安装、增删改查操作、索引、SpringBoot整合 Spring Data MongoDB
数据库·mongodb·springboot