整合spring cloud雲服務架構 - commonservice-eureka 專案構建過程

gung123發表於2020-02-25

我們針對於HongHu cloud的eureka專案做以下構建,整個構建的過程很簡單,我會將每一步都構建過程記錄下來,希望可以幫助到大家:


1. 建立一個名為particle-common-eureka的maven專案,繼承particle-commonservice,具體的pom.xml配置檔案如下:

<?xml version="1.0" encoding="UTF-8"?>  
<project xmlns="
    xsi:schemaLocation="
    <modelVersion>4.0.0</modelVersion>  
  
    <parent>  
        <groupId>com.ml.honghu</groupId>  
        <artifactId>particle-commonservice</artifactId>  
        <version>0.0.1-SNAPSHOT</version>  
    </parent>  
  
    <artifactId>particle-commonservice-eureka</artifactId>  
    <packaging>jar</packaging>  
  
    <name>particle-commonservice-eureka</name>  
    <description>particle-commonservice project for Spring Boot</description>  
  
    <dependencies>  
        <dependency>  
            <groupId>org.springframework.cloud</groupId>  
            <artifactId>spring-cloud-starter-eureka-server</artifactId>  
        </dependency>  
        <dependency>  
            <groupId>org.springframework.boot</groupId>  
            <artifactId>spring-boot-starter-security</artifactId>  
        </dependency>  
        <dependency>  
            <groupId>org.springframework.boot</groupId>  
            <artifactId>spring-boot-devtools</artifactId>  
        </dependency>  
          
        <dependency>  
            <groupId>org.springframework.boot</groupId>  
            <artifactId>spring-boot-starter-test</artifactId>  
            <scope>test</scope>  
        </dependency>  
  
    </dependencies>  
  
    <build>  
        <plugins>  
            <plugin>  
                <groupId>org.springframework.boot</groupId>  
                <artifactId>spring-boot-maven-plugin</artifactId>  
                <executions>  
                    <execution>  
                        <id>1</id>  
                        <goals>  
                            <goal>repackage</goal>  
                        </goals>  
                    </execution>  
                    <execution>  
                        <id>2</id>  
                        <goals>  
                            <goal>build-info</goal>  
                        </goals>  
                    </execution>  
                </executions>  
                <configuration>  
                    <executable>true</executable>  
                </configuration>  
                  
            </plugin>  
        </plugins>  
    </build>  
</project>

2. 在啟動類入口引用eureka的相關配置,程式碼如下:

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 預設埠為: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: 
      defaultZone: 
  instance:  
    prefer-ip-address: true  
    hostname: localhost  
    metadataMap:  
      zone: honghuZone  
      user: ${security.user.name}  
      password: {security.user.password}  
        
  # 指定環境  
  environment: dev  
  #指定資料中心  
  datacenter: honghu  
  # 關閉自我保護模式  
  server:   
    enable-self-preservation: false  
  #設定清理無效節點的時間間隔,預設60000,即是60s  
    eviction-interval-timer-in-ms: 60000  
  
# 服務認證  
security:   
  basic:   
    enabled: true  
  user:   
    name: honghu  
    password: 123456  
  
management:  
  security:  
    enabled: false

4. 增加專案的log機制和打包執行機制(後面我們會詳細編寫針對於Linux Centos下的打包部署機制)

5. 自此整個專案部署完成,透過手動方式進行Run As --> Spring Boot App,執行結果如下:

控制檯執行結果:

整合spring cloud雲服務架構 - commonservice-eureka 專案構建過程

訪問控制檯並登陸:

整合spring cloud雲服務架構 - commonservice-eureka 專案構建過程

控制檯執行效果:

整合spring cloud雲服務架構 - commonservice-eureka 專案構建過程

公司最近升級了電子商務系統,將所有電子商務功能全部轉為分散式微服務模式
瞭解springcloud架構可以加求求:三五三六二四七二五九

在這裡插入圖片描述

在這裡插入圖片描述

在這裡插入圖片描述

在這裡插入圖片描述

在這裡插入圖片描述

從現在開始,我這邊會將近期研發的spring cloud微服務雲架構的搭建過程和精髓記錄下來,幫助更多有興趣研發spring cloud框架的朋友,大家來一起探討spring cloud架構的搭建過程及如何運用於企業專案。

原始碼來源

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69952307/viewspace-2677106/,如需轉載,請註明出處,否則將追究法律責任。

相關文章