In my spring boot REST API application, I need to handle HTTP POST by accepting a strongly-typed list as my input:
@RestController public class CusttableControll
For me I had made a typo accidentally wrapping a class in a list. Removing the typo allowed serialization to happen correctly via spring data rest + jackson.
List a; // typo MyClass = a;// fix