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 25, 2025 14:59
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;