• 优雅地记录http请求和响应的数据


    1.场景

    经常会遇到需要处理 http 请求以及响应 body 的场景。而这里比较大的一个问题是 servlet的 requestBody 或 responseBody 流一旦被读取了就无法二次读取了。

    2.解决方案

    spring 提供了两个类,如下:

    • ContentCachingRequestWrapper
    • ContentCachingResponseWrapper

    代码如下:

    package com.sx.system.config;
    
    import lombok.extern.java.Log;
    import org.springframework.http.HttpMethod;
    import org.springframework.web.filter.OncePerRequestFilter;
    import org.springframework.web.util.ContentCachingRequestWrapper;
    import org.springframework.web.util.ContentCachingResponseWrapper;
    import org.springframework.web.util.WebUtils;
    
    import javax.servlet.FilterChain;
    import javax.servlet.ServletException;
    import javax.servlet.annotation.WebFilter;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import java.io.IOException;
    import java.io.UnsupportedEncodingException;
    import java.util.stream.Collectors;
    import java.util.stream.Stream;
    
    @WebFilter(filterName = "httpbodyfileter")
    @Log
    public  class HttpBodyRecorderFilter extends OncePerRequestFilter {
    
        private static final int DEFAULT_MAX_PAYLOAD_LENGTH = 1024 * 512;
    
        private int maxPayloadLength = DEFAULT_MAX_PAYLOAD_LENGTH;
    
        @Override
    
        protected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain)
            throws ServletException, IOException {
            boolean isFirstRequest = !isAsyncDispatch(request);
            HttpServletRequest requestToUse = request;
            if (isFirstRequest && !(request instanceof ContentCachingRequestWrapper) && (
                request.getMethod().equals(HttpMethod.PUT.name()) || request.getMethod().equals(HttpMethod.POST.name()))) {
                requestToUse = new ContentCachingRequestWrapper(request);
            }
            HttpServletResponse responseToUse = response;
            if (!(response instanceof ContentCachingResponseWrapper) && (request.getMethod().equals(HttpMethod.PUT.name())
                || request.getMethod().equals(HttpMethod.POST.name()))) {
                responseToUse = new ContentCachingResponseWrapper(response);
            }
            boolean hasException = false;
            try {
                filterChain.doFilter(requestToUse, responseToUse);
            } catch (final Exception e) {
                hasException = true;
                throw e;
            } finally {
                int code = hasException ? 500 : response.getStatus();
    
                if (!isAsyncStarted(requestToUse) && (this.codeMatched(code, "200"))) {
                    recordBody(createRequest(requestToUse), createResponse(responseToUse));
                } else {
                    writeResponseBack(responseToUse);
                }
    
            }
    
        }
    
        protected String createRequest(HttpServletRequest request) {
            String payload = "";
    
            ContentCachingRequestWrapper wrapper = WebUtils.getNativeRequest(request, ContentCachingRequestWrapper.class);
    
            if (wrapper != null) {
                byte[] buf = wrapper.getContentAsByteArray();
                payload = genPayload(payload, buf, wrapper.getCharacterEncoding());
            }
    
            return payload;
        }
    
        protected String createResponse(HttpServletResponse resp) {
            String response = "";
    
            ContentCachingResponseWrapper wrapper = WebUtils.getNativeResponse(resp, ContentCachingResponseWrapper.class);
    
            if (wrapper != null) {
                byte[] buf = wrapper.getContentAsByteArray();
    
                try {
                    wrapper.copyBodyToResponse();
                } catch (IOException e) {
                    e.printStackTrace();
                }
    
                response = genPayload(response, buf, wrapper.getCharacterEncoding());
            }
    
            return response;
    
        }
    
        protected void writeResponseBack(HttpServletResponse resp) {
            ContentCachingResponseWrapper wrapper = WebUtils.getNativeResponse(resp, ContentCachingResponseWrapper.class);
    
            if (wrapper != null) {
                try {
                    wrapper.copyBodyToResponse();
                } catch (IOException e) {
                    log.info("Cannot copy Fail to write response body back");
                }
            }
    
        }
    
        private String genPayload(String payload, byte[] buf, String characterEncoding) {
    
            if (buf.length > 0 && buf.length < getMaxPayloadLength()) {
                try {
                    payload = new String(buf, 0, buf.length, characterEncoding);
                } catch (UnsupportedEncodingException ex) {
                    payload = "[unknown]";
                }
            }
    
            return payload;
    
        }
    
        public int getMaxPayloadLength() {
            return maxPayloadLength;
        }
    
        private boolean codeMatched(int responseStatus, String statusCode) {
    
            if (statusCode.matches("^[0-9,]*$")) {
                String[] filteredCode = statusCode.split(",");
                return Stream.of(filteredCode).map(Integer::parseInt).collect(Collectors.toList()).contains(responseStatus);
            } else {
                return false;
            }
    
        }
    
        protected  void recordBody(String payload, String response){
            log.info("payload:"+payload);
            log.info("response:"+response);
        };
    
    
    
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146

    3.原理

    通过ContentCachingResponseWrapper缓存类来作中转,这边用了装饰模式,把对外输出的内容先缓存在ContentCachingResponseWrapper对象的FastByteArrayOutputStream content对象中,输出日志的时候先从content对象中拿,输出完再真正的写入到输出对象中。👌,下面我们来看代码。

    3.1 初始化

    初始化的入口
    在这里插入图片描述
    原来的response 会被保存到这边
    在这里插入图片描述

    3.2 缓存处理

    Controller处理完业务,返回时先缓存在Response(ContentCachingResponseWrapper)对象的FastByteArrayOutputStream content对象中。
    以下是Controller的代码
    在这里插入图片描述
    下面按三个步聚来分析
    在这里插入图片描述

    A 是SpringMVC 处理中心 DispatcherServlet 处理Controller的入口
    在这里插入图片描述
    注意,这边传入的正是我们在记录日志过滤中输入的缓存包装类

    B Spring 的返回处理中心把字符串(hellow world )写到out(ContentCachingResponseWrapper#ResponseServletOutputStream)中
    在这里插入图片描述
    C 通过ContentCachingResponseWrapper#ResponseServletOutputStream写入到
    private final FastByteArrayOutputStream content 对对象中。代码如下
    在这里插入图片描述

    3.3 输出日志并且回写代理的Response中

    在这里插入图片描述
    在这里插入图片描述
    接下来我们来看下 byte[] buf = wrapper.getContentAsByteArray()方法
    #ContentCachingResponseWrapper

    	public byte[] getContentAsByteArray() {
    		return this.content.toByteArray();
    	}
    
    • 1
    • 2
    • 3

    再来看下以下方法
    #ContentCachingResponseWrapper.copyBodyToResponse();

    public void copyBodyToResponse() throws IOException {
    		copyBodyToResponse(true);
    	}
    
    	/**
    	 * Copy the cached body content to the response.
    	 * @param complete whether to set a corresponding content length
    	 * for the complete cached body content
    	 * @since 4.2
    	 */
    	protected void copyBodyToResponse(boolean complete) throws IOException {
    		if (this.content.size() > 0) {
    			HttpServletResponse rawResponse = (HttpServletResponse) getResponse();
    			if ((complete || this.contentLength != null) && !rawResponse.isCommitted()) {
    				if (rawResponse.getHeader(HttpHeaders.TRANSFER_ENCODING) == null) {
    					rawResponse.setContentLength(complete ? this.content.size() : this.contentLength);
    				}
    				this.contentLength = null;
    			}
    			this.content.writeTo(rawResponse.getOutputStream());
    			this.content.reset();
    			if (complete) {
    				super.flushBuffer();
    			}
    		}
    	}
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26

    主要是把缓存中的内容放到所代理的Response中。👌,这样就解决了输入、输出流只能一次读写的问题。

    4.参考

    1.RestTemplate打印响应结果
    https://blog.csdn.net/zhang_Red/article/details/91960182
    2.RestTemplate相关组件:ClientHttpRequestInterceptor【享学Spring MVC】
    https://www.cnblogs.com/yourbatman/p/11532777.html

  • 相关阅读:
    1. Springboot集成Mybatis
    echarts地图各种点位实现
    二硫化钼量子点修饰纳米金棒/CdS纳米棒|二硫化钼量子点/g-C3N4复合光催化剂|马来酰亚胺修饰二硫化钼MoS2-MAL
    Flume理论
    MySQL--- DQL查询数据信息
    【云原生】portainer管理多个独立docker服务器
    过滤器
    latexify-py
    java毕业生设计中国古诗词学习平台计算机源码+系统+mysql+调试部署+lw
    SpringMvc接收参数
  • 原文地址:https://blog.csdn.net/shandian534/article/details/126869647