這篇文章將為大家詳細(xì)講解有關(guān)如何創(chuàng)建網(wǎng)關(guān)項目Spring Cloud Gateway,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
創(chuàng)新互聯(lián)建站專業(yè)為企業(yè)提供黎平網(wǎng)站建設(shè)、黎平做網(wǎng)站、黎平網(wǎng)站設(shè)計、黎平網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計與制作、黎平企業(yè)網(wǎng)站模板建站服務(wù),十余年黎平做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。
創(chuàng)建網(wǎng)關(guān)項目
加入網(wǎng)關(guān)后微服務(wù)的架構(gòu)圖
創(chuàng)建項目
POM文件
1.8 Greenwich.SR3 org.springframework.cloud spring-cloud-starter-gateway org.springframework.boot spring-boot-starter-test test org.springframework.cloud spring-cloud-dependencies ${spring-cloud.version} pom import
修改配置文件
將項目目錄下的/src/main/resources/application.properties文件重命名為application.yml,properties配置格式和yml配置格式是等效的,而yml配置格式能更好的被配置中心使用,所以我們使用yml配置格式。
測試網(wǎng)關(guān)項目
application.yml配置文件內(nèi)容修改如下:
server: port: 9000 spring: cloud: gateway: routes: - id: first_route uri: https://github.com/sunweisheng predicates: - Path=/test
port:網(wǎng)關(guān)服務(wù)端口
routes:路由集合
id:路由的唯一標(biāo)示
uri:路由目標(biāo)地址
predicates:路由條件,如果為true則路由到uri
predicates(還有filters)的種類很多請參考Spring Cloud Gateway官網(wǎng)
啟動項目測試
訪問127.0.0.1:9000/test
關(guān)于“如何創(chuàng)建網(wǎng)關(guān)項目Spring Cloud Gateway”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。