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

溫馨提示×

溫馨提示×

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

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

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

合川市| 怀柔区| 文昌市| 海南省| 溆浦县| 章丘市| 长寿区| 刚察县| 拜城县| 浠水县| 班玛县| 荔浦县| 涡阳县| 福泉市| 收藏| 麻城市| 云梦县| 南丹县| 广河县| 凤山市| 海阳市| 疏附县| 扎赉特旗| 溧水县| 佳木斯市| 营山县| 灵璧县| 涿鹿县| 洛川县| 渝北区| 鹤峰县| 宝山区| 沙坪坝区| 井冈山市| 咸宁市| 镇巴县| 上林县| 聂荣县| 新源县| 昭觉县| 襄汾县|