Skip to content

Instantly share code, notes, and snippets.

@NutterzUK
Created October 26, 2020 21:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save NutterzUK/20cc3997c8af0876d29219f9a5d3abd2 to your computer and use it in GitHub Desktop.
Save NutterzUK/20cc3997c8af0876d29219f9a5d3abd2 to your computer and use it in GitHub Desktop.
@Component
public class LogFilter extends OncePerRequestFilter {
private static Logger LOG = LoggerFactory.getLogger(LogFilter.class);
@Override
protected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain)
throws ServletException, IOException {
LOG.info(request.getRequestURI()); // log the request path.
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment