I know that we can map an object using _method(@RequestBody ObjectClass obj).
What i'm trying to achieve is _method(@RequestBody ObjectClass obj, @RequestBody OtherObjectClass obj2) but doesn't work.
Is there some way to map two objects using same request?
Thanks!