亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

吉安市| 正定县| 锡林浩特市| 安化县| 古浪县| 德令哈市| 台东县| 曲周县| 科技| 芦溪县| 本溪市| 镇原县| 滨海县| 万源市| 垣曲县| 栖霞市| 班玛县| 德惠市| 平舆县| 乌什县| 汾西县| 上虞市| 江津市| 读书| 奈曼旗| 云和县| 苍溪县| 平利县| 岑巩县| 日土县| 恩平市| 宁远县| 上高县| 钟祥市| 木兰县| 土默特左旗| 扬中市| 河北省| 惠来县| 游戏| 都江堰市|