【发布时间】:2019-09-13 15:51:43
【问题描述】:
我正在使用spring boot 1.5。我试图在DELETE中传递多个ID,所以我尝试传递一个ID列表并浏览它们以应用删除方法,但它没有字,请帮助。
@RequestMapping(value = "/deleteAlert/{ids}", method = RequestMethod.DELETE)
ResponseEntity<Void> massiveDelete(@PathVariable List<Long> ids ){
for (Long id : ids) {
alertService.deleteAlert(id);}
return ok().build();
}
因此,删除所有具有选定 ID 的警报
【问题讨论】: