SyntaxFix
Write A Post
Hire A Developer
Questions
It seems that now you can just mark the method parameter with @RequestParam and it will do the job for you.
@RequestParam
@PostMapping( "some/request/path" ) public void someControllerMethod( @RequestParam Map<String, String> body ) { //work with Map }