91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用@PathVariable注解怎么讓spring支持參數帶值功能

發布時間:2021-02-23 16:43:50 來源:億速云 閱讀:369 作者:Leah 欄目:開發技術

本篇文章給大家分享的是有關使用@PathVariable注解怎么讓spring支持參數帶值功能,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

@PathVariable的作用

獲取URL動態變量,例如

  @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的精華推向了高潮,那個時代,跟微信公眾號結合的開發如火如荼,很多東西都會用到URL參數帶值的功能。

@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模板參數(占位符參數/參數帶值)

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

@PathVariable的RESTful示范

前面講作用的時候已經有一個,現在再提供多一個,別人訪問的時候可以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接收參數帶點號時只截取點號前的數據的問題

問題:

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

本來fileName參數傳的是: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);
}

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

{fileName:.+}

以上就是使用@PathVariable注解怎么讓spring支持參數帶值功能,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

镇远县| 遵义县| 开封市| 安陆市| 开鲁县| 儋州市| 南漳县| 乐陵市| 木里| 开原市| 清苑县| 凤翔县| 确山县| 台州市| 衡水市| 乐山市| 长治县| 蓬溪县| 威海市| 涟源市| 岑巩县| 乌苏市| 太谷县| 阜阳市| 沁阳市| 城口县| 中山市| 卫辉市| 枞阳县| 河北省| 五峰| 喀什市| 西和县| 牟定县| 会东县| 洪江市| 梅河口市| 阿拉善右旗| 古丈县| 乐清市| 兴义市|