這篇文章主要為大家展示了“spring cloud如何構(gòu)建微服務(wù)架構(gòu)的網(wǎng)關(guān)”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“spring cloud如何構(gòu)建微服務(wù)架構(gòu)的網(wǎng)關(guān)”這篇文章吧。
創(chuàng)新互聯(lián)是專(zhuān)業(yè)的公主嶺網(wǎng)站建設(shè)公司,公主嶺接單;提供成都做網(wǎng)站、成都網(wǎng)站制作,網(wǎng)頁(yè)設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專(zhuān)業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行公主嶺網(wǎng)站開(kāi)發(fā)網(wǎng)頁(yè)制作和功能擴(kuò)展;專(zhuān)業(yè)做搜索引擎喜愛(ài)的網(wǎng)站,專(zhuān)業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來(lái)合作!
一、加入Zuul的依賴
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-zuul</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-eureka</artifactId> </dependency>
由于,我們需要將Zuul服務(wù)注冊(cè)到Eureka Server上,同時(shí)從Eureka Server上發(fā)現(xiàn)注冊(cè)的服務(wù),所以這里我們加上了Eureka的依賴。
二、在應(yīng)用Application主類(lèi)上開(kāi)啟Zuul支持
@SpringBootApplication @EnableZuulProxy // 使用@EnableZuulProxy來(lái)開(kāi)啟Zuul的支持,如果你不想使用Zuul提供的Filter和反向代理的功能的話,此處可以使用@EnableZuulServer注解 public class ZuulApplication { public static void main(String[] args) { SpringApplication.run(ZuulApplication.class, args); } }
三、在application.yml中增加Zuul的基礎(chǔ)配置信息
spring: application: name: gateway-zuul # 應(yīng)用名 server: port: 8768 #Zuul Server的端口號(hào) eureka: client: service-url: defaultZone: http://localhost:8761/eureka instance: prefer-ip-address: true
四、在application.yml中增加服務(wù)路由配置
前提:在Eureka Server已經(jīng)注冊(cè)了2個(gè)服務(wù),分別是:springboot-h3-service和springboot-rest-template-feign,其中springboot-rest-template-feign服務(wù)會(huì)調(diào)用springboot-h3-service服務(wù),springboot-rest-template-feign服務(wù)是我們對(duì)外提供的服務(wù),也就是說(shuō),springboot-rest-template-feign服務(wù)是我們暴漏給客戶端調(diào)用的。
# 路由配置方式一 #zuul: # routes: # springboot-rest-template-feign: /templateservice/** #所有請(qǐng)求springboot-rest-template-feign的請(qǐng)求,都會(huì)被攔截,并且轉(zhuǎn)發(fā)到templateservice上 # 路由配置方式二 zuul: routes: api-contract: # 其中api-contract是路由名稱(chēng),可以隨便定義,但是path和service-id需要一一對(duì)應(yīng) path: /templateservice/** service-id: springboot-rest-template-feign # springboot-rest-template-feign為注冊(cè)到Eureka上的服務(wù)名 ribbon: NFLoadBalancerRuleClassName: com.netflix.loadbalancer.RoundRobinRule # 配置服務(wù)端負(fù)載均衡策略
五、驗(yàn)證
下面我們就可以來(lái)進(jìn)行驗(yàn)證了,在瀏覽器中輸入:http://localhost:8768/templateservice/template/1就可以看到測(cè)試結(jié)果了。
以上是“spring cloud如何構(gòu)建微服務(wù)架構(gòu)的網(wǎng)關(guān)”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
網(wǎng)站題目:springcloud如何構(gòu)建微服務(wù)架構(gòu)的網(wǎng)關(guān)
文章出自:http://muchs.cn/article2/gdgsic.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供Google、云服務(wù)器、手機(jī)網(wǎng)站建設(shè)、用戶體驗(yàn)、搜索引擎優(yōu)化、網(wǎng)站導(dǎo)航
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)