當前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
Springboot 传递 List「Long」 IdList
生活随笔
收集整理的這篇文章主要介紹了
Springboot 传递 List「Long」 IdList
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
/*** 刪除企業排污口詳細信息** @return*/
@DeleteMapping("/bathDelete")
public Result bathDelete(@RequestBody IdListDto idListDto){Integer count = iOutfallEnterpriseService.bathDelete(idListDto.getIds());return ResponseUtil.getSuccess(count);
}
@Data
public class IdListDto {private List<Long> ids;}
?
?
SpringMVC開發中遇到的異常1:No primary or default constructor found for interface java.util.List
Request processing failed; nested exception is java.lang.IllegalStateException: No primary or default constructor found for interface java.util.List
?
?錯誤寫法:
?
錯誤原因,沒有默認的構造器,需要傳輸一個傳輸類
?
正確寫法?
?
?DispatchDTO內容如下:
?
作者: 元寶爸爸
出處:https://www.cnblogs.com/wozixiaoyao/p/11579238.html
版權:本文采用「署名-非商業性使用-相同方式共享 4.0 國際」知識共享許可協議進行許可。
總結
以上是生活随笔為你收集整理的Springboot 传递 List「Long」 IdList的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 企业网站怎么管理系统(企业网站怎么管理系
- 下一篇: 怎么做自己的自助建站系统(如何自助建站)