這篇文章主要介紹了Spring Cloud基于zuul實現(xiàn)網(wǎng)關(guān)過程解析,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下
創(chuàng)新互聯(lián)-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設、高性價比新余網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式新余網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設找我們,業(yè)務覆蓋新余地區(qū)。費用合理售后完善,10年實體公司更值得信賴。
利用zuul網(wǎng)關(guān)統(tǒng)一向外暴露接口
1.新建項目 spring-zuul
2.引入pom
org.springframework.cloud spring-cloud-starter-netflix-zuul
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中轉(zhuǎn)訪問各個業(yè)務微服務的url格式: {basePath}/{spring.application.name}/url
{basePath} : 網(wǎng)關(guān)zuul項目啟動后的路徑
{spring.application.name} 各個具體子系統(tǒng)的微服務名稱,即配置文件中配置的spring.application.name
url : 各個應用自定的的http接口。
測試:
完整代碼訪問: https://github.com/halouprogramer/spring-cloud-demo
以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。