Turns out, that when adding the @RequestBody annotation, I was importing the annotation from Swagger, not the annotation from Springframework.web.bind.annotation.
Swagger
Springframework.web.bind.annotation
In Summary, I was importing the wrong @RequestBody. :(