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
Try to add RequestBody annotation to your method definition
@RequestMapping(value="/custtable/update", method=RequestMethod.POST) @ResponseBody public String updateCusttableRecords(@RequestBody List customers) { //Method body }