Skip to content

Instantly share code, notes, and snippets.

View webITSol's full-sized avatar

Matthias Gladt webITSol

View GitHub Profile
@michael-pratt
michael-pratt / RequestAndResponseLoggingFilter.java
Last active June 7, 2024 10:53
Simple Spring Boot Request and Response Logging Filter
// Adapted from https://gist.github.com/int128/e47217bebdb4c402b2ffa7cc199307ba
package com.elvtn.logging;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.jmx.export.annotation.ManagedOperation;
import org.springframework.jmx.export.annotation.ManagedResource;