No primary or default constructor found for interface java.util.List

有时候我们前端会传一些 list 集合的参数,如果 list 集合的存储的类型是对象,通过 json 就可以封装,后端使用注解 @RequestBody 可以接收。如果是想传递通过装箱后的基本类型的 list ,需要使用到注解 @RequestParam。

后端没有使用 @RequestParam,swagger和postman传参数就会报这个错误

Request processing failed; nested exception is java.lang.IllegalStateException: No primary or default constructor found for interface java.util.List

No primary or default constructor found for interface java.util.List_第1张图片
No primary or default constructor found for interface java.util.List_第2张图片
加上 @RequestParam 注解

@RequestParam("idLists") List<Long> idLists

传参方式有两种
一种是直接写成以英文逗号分开的字符串:
No primary or default constructor found for interface java.util.List_第3张图片
No primary or default constructor found for interface java.util.List_第4张图片
另外一种就是分开传参:
No primary or default constructor found for interface java.util.List_第5张图片
No primary or default constructor found for interface java.util.List_第6张图片

你可能感兴趣的:(java,swagger,postman,java,前端,postman)