How I can override @RequestBody content in spring boot before it reaches to the controller?
I know that there is WebMvcConfigurer and HandlerInterceptorAdapter classes to handle request before controller.
Also I've googled for RequestBodyAdviceAdapter as well.
There are several links that didn't work for spring boot.
How to read request.getInputStream() multiple times
How to modify request body before reaching controller in spring boot
Now can I read input stream into string, make some modification and set back into input stream for the controller?