restful json request response 패킷 로깅 필터
·
SpringBoot
Json 통신 request 및 response 패킷 로깅을 위한 필터를 작성해 보았습니다. @Slf4j public class HttpLoggingFilter extends OncePerRequestFilter implements Filter { private static final List VISIBLE_TYPES = Arrays.asList( MediaType.APPLICATION_JSON, MediaType.APPLICATION_JSON_UTF8, ); @Data private static class HttpLogData { private String method; private String uri; private Map headers = new HashMap(); private String ra..