当前位置: 首页 > 工具软件 > Interface.js > 使用案例 >

No primary or single public constructor found for interface java.util.List - and no default construc

伯庆
2023-12-01
   @RequestMapping("/batchDeleteProduct")
    public   TmyResult batchDeleteProduct( List<Integer> ids){

        System.out.println(ids);
        return null;
    }
``需要在list前面添加注解@RequestParam(value = "ids" ,required=false)
如下图




   @RequestMapping("/batchDeleteProduct")
    public   TmyResult batchDeleteProduct( @RequestParam(value = "ids",required=false) List<Integer> ids){

        System.out.println(ids);
        return null;
    }
 类似资料:

相关阅读

相关文章

相关问答