Swagger中paramType

 paramType:表示參數放在哪一個地方
    header-->請求參數的獲取:@RequestHeader(代碼中接收註解)
    query-->請求參數的獲取:@RequestParam(代碼中接收註解)
    path(用於restful接口)-->請求參數的獲取:@PathVariable(代碼中接收註解)
    body-->請求參數的獲取:@RequestBody(代碼中接收註解)
    form(不經常使用)restful

相關文章
相關標籤/搜索