swagger 传输 List 实体类 的几种写法

直接上代码

//第一种,使用requestBody 解析
    @ApiOperation(value = "",notes = "")
    @ApiImplicitParam(name="chapters",value = "json数组传输",dataType = "EpChapter")
    @PostMapping("")
    ResultVO multInsert(@RequestBody List chapters){
        System.out.println(chapters);
        return  ResultVO.success();
    }
//第二种,json字符串,自己解析
    @ApiOperation(value = "",notes = "")
    @ApiImplicitParam(name="strings",value = "",dataType = "String")
    @PostMapping("/post")
    ResultVO multInsert2(String chapterJson){
        System.out.println(chapterJson);
        return  ResultVO.success();
    }

第三种,使用swagger2的 allowMultiple = ture,但我不会使用

第四种,有请告诉我

你可能感兴趣的:(spring)