不能用@ResquestBody,應使用
1.@ApiImplicitParams:用在請求的方法上,包含一組參數說明
2.@ApiImplicitParam:用在 @ApiImplicitParams 注解中或在請求的方法上,指定一個請求參數的配置信息
?
name:參數名
? ? ? ? value:參數的漢字說明、解釋
? ? ? ? required:參數是否必須傳
? ? ? ? paramType:參數放在哪個地方
? ? ? ? ? ? · header --> 請求參數的獲取:@RequestHeader
? ? ? ? ? ? · query --> 請求參數的獲?。篅RequestParam
? ? ? ? ? ? · path(用于restful接口)--> 請求參數的獲?。篅PathVariable
? ? ? ? ? ? · body(不常用)
? ? ? ? ? ? · form(不常用) ? ?
? ? ? ? dataType:參數類型,默認String,其它值dataType="Integer" ? ? ??
? ? ? ? defaultValue:參數的默認值
本文摘自 :https://www.cnblogs.com/