spring boot - 如何在HTTP控制器处理程序中避免“无法实例化[java.util.List]:指定的类是一个接口”?

时间:2016-09-10 15:00:42

标签: java spring spring-boot

在我的spring boot REST API应用程序中,我需要通过接受强类型列表作为我的输入来处理HTTP POST:

@RestController
public class CusttableController {

    static final Logger LOG = LoggerFactory.getLogger(CusttableController.class);

    @RequestMapping(value="/custtable/update", method=RequestMethod.POST)
    @ResponseBody
    public String updateCusttableRecords(List<Custtable> customers) {
        try {
                for (Custtable cust : customers) {

                Custtable customer = (Custtable) custtableDao.getById(Custtable.class, 
                        new CusttableCompositeKey 
                        (cust.getAccountnum(),cust.getPartition(),cust.getDataareaid()));

在这个API的Jersey版本中,这个工作得很好,但是使用Spring Boot,它给了我这个错误:

org.springframework.beans.BeanInstantiationException: Failed to instantiate [java.util.List]: Specified class is an interface

在Spring Boot中接受强类型列表的正确方法是什么?

2 个答案:

答案 0 :(得分:28)

尝试将RequestBody注释添加到方法定义

@RequestMapping(value="/custtable/update", method=RequestMethod.POST)
@ResponseBody
public String updateCusttableRecords(@RequestBody List<Custtable> customers) {
    //Method body 
}

答案 1 :(得分:0)

对我来说,我犯了一个错字,不小心把一个班级列入了一个列表。 删除拼写错误允许序列化通过spring data rest + jackson正确发生。

List<MyClass> a; // typo
MyClass = a;// fix