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

溫馨提示×

溫馨提示×

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

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

SpringCloud服務的發現與調用實例分析

發布時間:2022-07-18 14:11:12 來源:億速云 閱讀:166 作者:iii 欄目:開發技術

這篇文章主要介紹“SpringCloud服務的發現與調用實例分析”,在日常操作中,相信很多人在SpringCloud服務的發現與調用實例分析問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”SpringCloud服務的發現與調用實例分析”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

一、服務提供者

  • 新建Maven項目provider

  • 引入項目依賴

    <parent>
        <groupId>com.cxy965</groupId>
        <artifactId>parent</artifactId>
        <version>1.0-SNAPSHOT</version>
        <relativePath>../parent/pom.xml</relativePath>
    </parent>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
        </dependency>
    </dependencies>

新建配置文件application.yml

server:
  port: 8002
spring:
  application:
    name: provider
eureka:
  client:
    service-url:
      defaultZone: http://localhost:8001/eureka/
    fetch-registry: true

創建啟動類和服務接口,為了簡便,暫時將服務接口放在了啟動類,實際項目中,最好還是要放在controller中。

@EnableEurekaClient
@SpringBootApplication
@RestController
public class ProviderApplication {
    public static void main(String[] args) {
        SpringApplication.run(ProviderApplication.class, args);
    }
    @GetMapping("/hello")
    public String hello(String name) {
       return "Hello "+name;
    }
}

啟動驗證一下,可以正常返回。

SpringCloud服務的發現與調用實例分析

二、服務消費者

  • 參考provider項目創建consumer項目

  • 修改配置文件中的端口和應用名稱為8003、consumer

  • 創建啟動類和服務消費代碼

@EnableEurekaClient
@SpringBootApplication
@RestController
public class ConsumerApplication {
    public static void main(String[] args) {
        SpringApplication.run(ConsumerApplication.class, args);
    }
    @Bean
    RestTemplate restTemplate() {
        return new RestTemplate();
    }
    @Autowired
    DiscoveryClient discoveryClient;
    @Autowired
    RestTemplate restTemplate;
    @GetMapping("/hello")
    public String hello(String name) {
        List<ServiceInstance> list = discoveryClient.getInstances("provider");
        ServiceInstance instance = list.get(0);
        String host = instance.getHost();
        int port = instance.getPort();
        String returnInfo = restTemplate.getForObject("http://" + host + ":" + port + "/hello?name={1}", String.class, name);
        return returnInfo;
    }
}

啟動驗證一下

SpringCloud服務的發現與調用實例分析

可以看到,我們調用8003消費者服務,消費者服務又調用了8002服務提供者的接口,并正確返回了結果。

到此,關于“SpringCloud服務的發現與調用實例分析”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

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

AI

玉林市| 大埔县| 凭祥市| 新密市| 德庆县| 余庆县| 衡阳市| 梁山县| 武穴市| 石城县| 灌阳县| 夏津县| 祁连县| 茂名市| 台南市| 崇左市| 疏勒县| 海宁市| 湖南省| 石泉县| 依兰县| 内乡县| 澄江县| 那曲县| 乐东| 边坝县| 灵寿县| 鸡西市| 涞源县| 如东县| 固始县| 托克托县| 馆陶县| 凉城县| 且末县| 赤水市| 张家界市| 武义县| 广平县| 峨眉山市| 古田县|