有时候我们前端会传一些 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
加上 @RequestParam 注解文章来源:https://www.toymoban.com/news/detail-517456.html
@RequestParam("idLists") List<Long> idLists
传参方式有两种
一种是直接写成以英文逗号分开的字符串:
另外一种就是分开传参:
文章来源地址https://www.toymoban.com/news/detail-517456.html
到了这里,关于No primary or default constructor found for interface java.util.List的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!