1.添加依賴
創(chuàng)新互聯(lián)成都企業(yè)網(wǎng)站建設(shè)服務(wù),提供做網(wǎng)站、網(wǎng)站制作網(wǎng)站開發(fā),網(wǎng)站定制,建網(wǎng)站,網(wǎng)站搭建,網(wǎng)站設(shè)計(jì),成都響應(yīng)式網(wǎng)站建設(shè)公司,網(wǎng)頁設(shè)計(jì)師打造企業(yè)風(fēng)格網(wǎng)站,提供周到的售前咨詢和貼心的售后服務(wù)。歡迎咨詢做網(wǎng)站需要多少錢:13518219792
org.springframework.cloud spring-cloud-starter-netflix-eureka-client
2.添加客戶端配置
/src/main/java/resource/application.yml
server: port: 8770 eureka: client: serviceUrl: defaultZone: http://localhost:8761/eureka/ spring: application: name: shop-gateway
3.添加啟動(dòng)類注解
@SpringBootApplication @EnableDiscoveryClient public class ShopGatewayApplication { public static void main(String[] args) { SpringApplication.run(ShopGatewayApplication.class, args); } }
4.啟動(dòng)注冊(cè)中心后,再啟動(dòng)客戶端
訪問地址
http://localhost:8761
如圖:
以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。