@PathVariable注解,讓spring支持參數(shù)帶值功能的案例
@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的精華推向了高潮,那個時代,跟微信公眾號結(jié)合的開發(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,
但結(jié)果接收到的是: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)驗,希望能給大家一個參考,也希望大家多多支持腳本之家。如有錯誤或未考慮完全的地方,望不吝賜教。
相關(guān)文章
Mybatis輸入輸出映射及動態(tài)SQL Review
這篇文章主要介紹了Mybatis輸入輸出映射及動態(tài)SQL Review,需要的朋友可以參考下2017-02-02
SpringMVC學(xué)習之JSON和全局異常處理詳解
在項目上線之后,往往會出現(xiàn)一些不可預(yù)料的異常信息,對于邏輯性或設(shè)計性問題,開發(fā)人員或者維護人員需要通過日志,查看異常信息并排除異常,這篇文章主要給大家介紹了關(guān)于SpringMVC學(xué)習之JSON和全局異常處理的相關(guān)資料,需要的朋友可以參考下2022-10-10

