Tag: readingrequest

  • How to read a JSON request inside a Spring Boot filter?

    Let’s say you are using a filter in your spring boot application. Spring boot (Spring Security) already internally uses many filters to filter requests coming to your application. If you are going to create a custom filter you can do so by implementing Filter interface from javax servlet package or by extending GenericFilterBean/ OncePerRequestFilter provided…