您好,登錄后才能下訂單哦!
這篇文章主要講解了“SpringBoot 的@PathVariable怎么自動填充入實例對象中”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“SpringBoot 的@PathVariable怎么自動填充入實例對象中”吧!
@PathVariable自動填充入實例對象
記SpringBoot @PathVariable使用時遇到的問題
第一個問題
解決辦法
第二個問題
解決辦法
就在這里記錄一個今天剛用到的@PathVariable小技巧,免的以后忘記
@PostMapping("/updateSeeker/{userid}") @ResponseBody public String updateSeeker(@PathVariable("userid")Integer id,Seeker seeker){ System.out.println("傳來的seeker為====="+seeker); //回傳來的值@PathVariable("userid") 中如果seeker對象中有重名屬性就會將回傳的值自動填充進(jìn)去自動填充進(jìn)去 //例如這里因為seeker對象中有userid這個屬性,所以回傳來的userid將自動填充景區(qū) return "wdnmd" }
接口:
/** * 查詢客戶詳細(xì)信息 * BY Oliver_Deng * @param userId 用戶id * @return */ @ApiOperation(value="查詢客戶詳細(xì)信息",notes = "根據(jù)傳入id查詢客戶詳細(xì)信息") @ApiResponses({@ApiResponse(code=400,message="請求參數(shù)沒填好")}) @ApiImplicitParam(paramType = "query", name = "userId", dataType = "Integer", required = true, value = "客戶id") @GetMapping("/findCustomerDetailByUserId/{userId}") public Result<Map<String,Object>> findCustomerByUserId(@PathVariable Integer userId){ //客戶信息 // CustomerListVo customerMessage = customerUserService.findCustomerByUserID(userId); //客戶車輛信息 // List<CustomerUserCar> cars = customerUserCarService.findCarByUserId(Integer.valueOf(userId)); //not finish yet //TODO 計次卡、儲值卡 return null; }
Swagger訪問:
將paramType 設(shè)置為path即可。
paramType:表示參數(shù)放在哪個地方
header
-->請求參數(shù)的獲取:@RequestHeader(代碼中接收注解)
query
-->請求參數(shù)的獲?。篅RequestParam(代碼中接收注解)
path
(用于restful接口)-->請求參數(shù)的獲取:@PathVariable(代碼中接收注解)
body
-->請求參數(shù)的獲?。篅RequestBody(代碼中接收注解)
form
(不常用)
接口:
/** * 查詢車輛品牌、車系、年款、車型信息 * BY Oliver_Deng * @param brandId 車輛品牌ID * @param familyId 車系ID * @param groupId 車輛年款I(lǐng)D * @return */ @ApiOperation(value="查詢車輛品牌、車系、年款、車型信息",notes = "查詢車輛品牌、車系、年款、車型信息,傳入子id時先將上級id清空,一次訪問只能傳入一種id或者不傳id") @ApiImplicitParams({ @ApiImplicitParam(paramType = "query", name = "brandId", dataType = "String", required = false, value = "車輛品牌ID"), @ApiImplicitParam(paramType = "query", name = "familyId", dataType = "String", required = false, value = "車系ID"), @ApiImplicitParam(paramType = "query", name = "groupId", dataType = "String", required = false, value = "車輛年款I(lǐng)D") }) @ApiResponses({@ApiResponse(code=400,message="請求參數(shù)沒填好")}) @GetMapping("/findCarBrandMessage/{brandId}/{familyId}/{groupId}") public Result findCarBrandMessage(@PathVariable String brandId,@PathVariable String familyId,@PathVariable String groupId){ return customerUserCarService.findCarBrandMessage(brandId,familyId,groupId); }
Swageer訪問:
查詢成功,但是沒有數(shù)據(jù),我們來DeBug看一下:
可以看到值竟然時這些,并不是為null,所以自然滿足了if條件,但功能并不是要如此。
把@ApiImplicitParam參數(shù)去掉,用@RequestParam()。
為什么能用@RequestParam()?
RequestParam就是在url后面拼接的參數(shù)。
成功:
感謝各位的閱讀,以上就是“SpringBoot 的@PathVariable怎么自動填充入實例對象中”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對SpringBoot 的@PathVariable怎么自動填充入實例對象中這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。