国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術文章
文章詳情頁

@PathVariable注解,讓spring支持參數(shù)帶值功能的案例

瀏覽:4日期:2023-07-22 13:34:12
@PathVariable的作用

獲取URL動態(tài)變量,例如

@RequestMapping('/users/{userid}') @ResponseBody public String getUser(@PathVariable String userid){ return 'userid=' + userid; }@PathVariable的包引用

spring自從3.0版本就引入了org.springframework.web.bind.annotation.PathVariable,

這是RESTful一個具有里程碑的方式,將springMVC的精華推向了高潮,那個時代,跟微信公眾號結合的開發(fā)如火如荼,很多東西都會用到URL參數(shù)帶值的功能。

@PathVariable的PathVariable官方doc解釋

- Annotation which indicates that a method parameter should be bound to a URI template variable. Supported for RequestMapping annotated handler methods in Servlet environments.

- If the method parameter is Map<String, String> or MultiValueMap<String, String> then the map is populated with all path variable names and values.

翻譯過來就是:

- 在SpringMVC中可以使用@PathVariable注解,來支持綁定URL模板參數(shù)(占位符參數(shù)/參數(shù)帶值)

- 另外如果controller的參數(shù)是Map(String, String)或者MultiValueMap(String, String),也會順帶把@PathVariable的參數(shù)也接收進去

@PathVariable的RESTful示范

前面講作用的時候已經(jīng)有一個,現(xiàn)在再提供多一個,別人訪問的時候可以http://localhost:8080/call/窗口號-檢查編號-1

/** * 叫號 */ @PutMapping('/call/{checkWicket}-{checkNum}-{status}') public ApiReturnObject call(@PathVariable('checkWicket') String checkWicket,@PathVariable('checkNum') String checkNum, @PathVariable('status') String status) { if(StringUtils.isBlank(checkWicket) || StringUtils.isBlank(checkNum)) { return ApiReturnUtil.error('叫號失敗,窗口號,檢查者編號不能為空'); }else { if(StringUtils.isBlank(status)) status ='1'; try {lineService.updateCall(checkWicket,checkNum,status);return ApiReturnUtil.success('叫號成功'); } catch (Exception e) {return ApiReturnUtil.error(e.getMessage()); } } }

補充:解決@PathVariable接收參數(shù)帶點號時只截取點號前的數(shù)據(jù)的問題

問題:

@RequestMapping(value = 'preview/{fileName}', method = RequestMethod.GET)public void previewFile(@PathVariable('fileName') String fileName, HttpServletRequest req, HttpServletResponse res) { officeOnlinePreviewService.previewFile(fileName, req, res);}

本來fileName參數(shù)傳的是:userinfo.docx,

但結果接收到的是:userinfo

這顯然不是我想要的。

解決方法:

@RequestMapping(value = 'preview/{fileName:.+}', method = RequestMethod.GET)public void previewFile(@PathVariable('fileName') String fileName, HttpServletRequest req, HttpServletResponse res) { officeOnlinePreviewService.previewFile(fileName, req, res);}

參數(shù)fileName這樣寫,表示任何點(包括最后一個點)都將被視為參數(shù)的一部分:

{fileName:.+}

以上為個人經(jīng)驗,希望能給大家一個參考,也希望大家多多支持好吧啦網(wǎng)。如有錯誤或未考慮完全的地方,望不吝賜教。

標簽: Spring
主站蜘蛛池模板: 临猗县| 韶山市| 永兴县| 富锦市| 启东市| 乾安县| 芜湖县| 张家口市| 临西县| 同江市| 江川县| 武功县| 丁青县| 昆明市| 汽车| 哈巴河县| 尤溪县| 长沙县| 清水河县| 墨江| 台南市| 长垣县| 怀远县| 呼图壁县| 丰顺县| 绥江县| 英德市| 金阳县| 托克逊县| 克什克腾旗| 漠河县| 凤凰县| 临夏县| 都兰县| 行唐县| 阜平县| 大冶市| 合阳县| 麻栗坡县| 衡阳县| 山西省|