這篇文章主要介紹了Springcould多模塊搭建Eureka服務(wù)器端口過程詳解,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友可以參考下
站在用戶的角度思考問題,與客戶深入溝通,找到營口網(wǎng)站設(shè)計與營口網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗,讓設(shè)計與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:成都網(wǎng)站建設(shè)、網(wǎng)站設(shè)計、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣、域名與空間、雅安服務(wù)器托管、企業(yè)郵箱。業(yè)務(wù)覆蓋營口地區(qū)。
1創(chuàng)建一個普通父maven
在pom修改為因為spring could依賴spring boot所以首先在父maven
org.springframework.boot spring-boot-starter-parent 2.0.5.RELEASE
UTF-8 UTF-8 1.8 Finchley.SR1
引入依賴
org.springframework.cloud spring-cloud-dependencies ${spring-cloud.version} pom import junit junit 4.12 test
2.創(chuàng)建一個Eureka1000
把在父項目中有的刪掉,添加依賴
org.springframework.cloud spring-cloud-starter-netflix-eureka-server org.springframework.boot spring-boot-starter-web
3.在Eureka1000中創(chuàng)建resources并且寫入Java文件
resources
application.yml
server: port: 1000 #端口號 eureka: instance: hostname: localhost client: registerWithEureka: false fetchRegistry: false serviceUrl: defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
主配置類
package cn.jiedada; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.builder.SpringApplicationBuilder; import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer; @SpringBootApplication @EnableEurekaServer public class Application { public static void main(String[] args) { new SpringApplicationBuilder(Application.class).web(true).run(args); } }
運行出現(xiàn)
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。