本篇內(nèi)容介紹了“spring cloud的commonservice-eureka項目怎么構(gòu)建”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細閱讀,能夠?qū)W有所成!
成都創(chuàng)新互聯(lián)主要從事網(wǎng)站設(shè)計、成都網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)吉縣,十多年網(wǎng)站建設(shè)經(jīng)驗,價格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):13518219792
1. 創(chuàng)建一個名為particle-common-eureka的maven項目,繼承particle-commonservice,具體的pom.xml配置文件如下:
4.0.0 com.ml.honghu particle-commonservice 0.0.1-SNAPSHOT particle-commonservice-eureka jar particle-commonservice-eureka particle-commonservice project for Spring Boot org.springframework.cloud spring-cloud-starter-eureka-server org.springframework.boot spring-boot-starter-security org.springframework.boot spring-boot-devtools org.springframework.boot spring-boot-starter-test test org.springframework.boot spring-boot-maven-plugin 1 repackage 2 build-info true
2. 在啟動類入口引用eureka的相關(guān)配置,代碼如下:
package com.ml.honghu; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer; @EnableEurekaServer @SpringBootApplication public class ServiceApplication { public static void main(String[] args) { SpringApplication.run(ServiceApplication.class, args); } }
3. 配置application.yml文件
# server (eureka 默認(rèn)端口為:8761) server: port: 8761 # spring spring: application: name: particle-commonservice-erueka # eureka eureka: client: # 是否注冊到eureka register-with-eureka: true # 是否從eureka獲取注冊信息 fetch-registry: false availability-zones: honghu: honghuZone service-url: honghuZone: http://honghu:123456@localhost:8761/eureka/ defaultZone: http://honghu:123456@localhost:8761/eureka/ instance: prefer-ip-address: true hostname: localhost metadataMap: zone: honghuZone user: ${security.user.name} password: {security.user.password} # 指定環(huán)境 environment: dev #指定數(shù)據(jù)中心 datacenter: honghu # 關(guān)閉自我保護模式 server: enable-self-preservation: false #設(shè)置清理無效節(jié)點的時間間隔,默認(rèn)60000,即是60s eviction-interval-timer-in-ms: 60000 # 服務(wù)認(rèn)證 security: basic: enabled: true user: name: honghu password: 123456 management: security: enabled: false
4. 增加項目的log機制和打包運行機制(后面我們會詳細編寫針對于Linux Centos下的打包部署機制)
5. 自此整個項目部署完成,通過手動方式進行Run As --> Spring Boot App,運行結(jié)果如下:
控制臺運行結(jié)果:
訪問控制臺并登陸:
控制臺運行效果:
“spring cloud的commonservice-eureka項目怎么構(gòu)建”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!