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

溫馨提示×

溫馨提示×

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

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

Spring Cloud基于zuul實現網關過程解析

發布時間:2020-10-24 11:37:55 來源:腳本之家 閱讀:126 作者:指尖,寫不盡 欄目:編程語言

這篇文章主要介紹了Spring Cloud基于zuul實現網關過程解析,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下

利用zuul網關統一向外暴露接口

1.新建項目 spring-zuul

2.引入pom

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

3.配置

spring:
 application:
  name: spring-zuul
 http:
  encoding:
   charset: UTF-8 #設置請求返回UTF-8編碼
   force: true
eureka:
 client:
  service-url:
   defaultZone: http://localhost:8761/eureka/
 instance:
  prefer-ip-address: true
server:
 port: 8082

4.啟動類注解

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.cloud.netflix.zuul.EnableZuulProxy;

@SpringBootApplication
@EnableEurekaClient
@EnableZuulProxy
public class SpringZuulApplication {

  public static void main(String[] args) {
    SpringApplication.run(SpringZuulApplication.class, args);
  }

}

通過zuul中轉訪問各個業務微服務的url格式: {basePath}/{spring.application.name}/url

{basePath} : 網關zuul項目啟動后的路徑
{spring.application.name} 各個具體子系統的微服務名稱,即配置文件中配置的spring.application.name
url : 各個應用自定的的http接口。

測試:

Spring Cloud基于zuul實現網關過程解析

完整代碼訪問: https://github.com/halouprogramer/spring-cloud-demo

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

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

AI

天祝| 林西县| 杂多县| 久治县| 舒兰市| 南投县| 罗定市| 南丹县| 康平县| 宜城市| 大同县| 枞阳县| 张家川| 清水河县| 敦煌市| 原阳县| 井陉县| 塔河县| 新兴县| 通城县| 兴安县| 吉首市| 谷城县| 长岛县| 壶关县| 抚松县| 乃东县| 和政县| 峨眉山市| 五华县| 尉氏县| 保德县| 民乐县| 武冈市| 石家庄市| 金华市| 葵青区| 梁山县| 乌恰县| 山东省| 从江县|