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

溫馨提示×

溫馨提示×

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

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

Spring Cloud Feign怎么用

發布時間:2021-08-09 10:57:10 來源:億速云 閱讀:87 作者:小新 欄目:編程語言

這篇文章主要介紹了Spring Cloud Feign怎么用,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

概述

在Spring Cloud EureKa Ribbon 服務注冊-發現-調用一文中簡單的介紹了在Spring Cloud中如何使用EureKa和Ribbon。文章中使用了RestTemplate去訪問其他的restful微服務接口。其實在Spring Cloud還可以使用Feign來訪問其他的restful微服務接口。使用起來更加的簡潔明了。

集成Feign

修改一下Spring Cloud EureKa Ribbon 服務注冊-發現-調用中order service的pom配置,把Fegin引入進來即可。

<dependency>
  <groupId>org.springframework.cloud</groupId>
  <artifactId>spring-cloud-starter-feign</artifactId>
</dependency>

修改OrderApplication類,刪除如下代碼:

  @Bean
  @LoadBalanced
  RestTemplate restTemplate() {
    return new RestTemplate();
  }

并加上@EnableFeignClients注解。完整代碼如下:

package com.springboot;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.netflix.feign.EnableFeignClients;

@EnableDiscoveryClient
@EnableFeignClients
@SpringBootApplication
public class OrderApplication {
  public static void main(String[] args) {
    SpringApplication.run(OrderApplication.class, args);
  }
}

新增接口UserService,并使用@FeignClient注解。

package com.springboot;

import org.springframework.cloud.netflix.feign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;

@FeignClient(name="user")
public interface UserService {
  @GetMapping(value="/getUser")
  String getUser();
}

這里的@FeignClient(name="user")中的name=user表示要訪問user這個微服務。由于order這個微服務已經集成了Eureka和Ribbon。那么使用@FeignClient(name="user")訪問user微服務的時候,已經自動支持客戶端路由了。并且會從注冊中心中找到user這個微服務。

修改OrderController,注入UserService。

package com.springboot;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class OrderController {

  @Autowired
  private UserService userService;

  @GetMapping("/getOrderUser")
  public String getOrderUser() {
    return userService.getUser();
  }
}

這樣就無需使用

restTemplate.getForEntity("http://user/getUser",String.class).getBody();

來調用user服務中的getUser接口了。而是直接使用userService.getUser()就可以了。

啟動注冊中心以及user和order這兩個微服務。使用http://localhost:8883/getOrderUser

訪問一下。是可以返回

I am user list.

感謝你能夠認真閱讀完這篇文章,希望小編分享的“Spring Cloud Feign怎么用”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

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

AI

清丰县| 屯昌县| 黑水县| 修水县| 鸡西市| 新竹市| 新邵县| 宜兴市| 射洪县| 大连市| 沙田区| 侯马市| 崇州市| 通道| 无锡市| 怀仁县| 仙居县| 轮台县| 长岭县| 将乐县| 宜都市| 通山县| 庆云县| 定陶县| 十堰市| 砀山县| 克拉玛依市| 邢台市| 石嘴山市| 屏东市| 确山县| 泽州县| 筠连县| 邳州市| 咸阳市| 临邑县| 西青区| 于都县| 墨玉县| 容城县| 澄江县|