中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

SpringCloud微服務中的Rest及請求方式是什么

發布時間:2022-02-28 15:54:16 來源:億速云 閱讀:174 作者:iii 欄目:開發技術

這篇“SpringCloud微服務中的Rest及請求方式是什么”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“SpringCloud微服務中的Rest及請求方式是什么”文章吧。

一、什么是RestTemplate?

RestTemplate 是一個HTTP客戶端,在Spring Cloud的服務調用方使用它我們可以方便的調用HTTP接口,支持GET、POST、PUT、DELETE等方法。

二、四種請求方式

首先注入Bean對象

@Configuration
public class MyConfig {
  @Bean
  public RestTemplate restTemplate(){
      return new RestTemplate();
  }
}

2.1 GET請求

  • getForObject

@GetMapping("get/{id}")
public CommonResult getUser(@PathVariable Long id) {
    CommonResult commonResult 
    	= restTemplate.getForObject(Url + "/user/{1}", CommonResult.class, id);
    
    return commonResult
}
  • getForEntity

@GetMapping("/get/{sex}")
public CommonResult getUser(@PathVariable String sex) {
    ResponseEntity<CommonResult> entity 
        = restTemplate.getForEntity(Url + "/user/{女}", CommonResult.class, sex);
    
    if (entity.getStatusCode().is2xxSuccessful()) {
        return entity.getBody();
    } else {
        return new CommonResult("操作失敗", 500);
    }
}

2.2 POST請求

  • postForObject

@PostMapping("/add")
public CommonResult add(@RequestBody User user) {
    CommonResult commonResult
    	= restTemplate.postForObject(Url + "/user/add", user, CommonResult.class);
    
    return commonResult;
}
  • postForEntity

@PostMapping("/add")
public CommonResult add(@RequestBody User user) {
    CommonResult commonResult
    	= restTemplate.postForEntity(Url + "/user/add", user, CommonResult.class)
    return commonResult.getBody();
}

2.3 PUT請求

@PutMapping("/update")
public CommonResult update(@RequestBody User user) {
    restTemplate.put(Url + "/user/update", user);
    
    return new CommonResult("操作成功",200);
}

2.4 DELETE請求

@DeleteMapping("/delete/{id}")
public CommonResult delete(@PathVariable Long id) {
   restTemplate.delete(Url + "/user/delete/" + id, null);
   
    return new CommonResult("操作成功",200);
}

以上就是關于“SpringCloud微服務中的Rest及請求方式是什么”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

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

AI

龙陵县| 濮阳市| 贵溪市| 拜泉县| 沁水县| 紫阳县| 衡水市| 鹤山市| 舟曲县| 日照市| 合阳县| 金山区| 汝城县| 崇州市| 疏勒县| 临漳县| 来安县| 电白县| 高州市| 靖西县| 堆龙德庆县| 府谷县| 佛山市| 柘城县| 伊川县| 娄底市| 乾安县| 乌拉特前旗| 阿尔山市| 濉溪县| 平阳县| 墨脱县| 渝中区| 财经| 安阳市| 铁岭市| 揭西县| 荃湾区| 新泰市| 通江县| 乳源|