91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

spring cloud的commonservice-eureka項目怎么構建

發布時間:2021-12-29 09:38:52 來源:億速云 閱讀:102 作者:iii 欄目:軟件技術

本篇內容介紹了“spring cloud的commonservice-eureka項目怎么構建”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

1. 創建一個名為particle-common-eureka的maven項目,繼承particle-commonservice,具體的pom.xml配置文件如下:

<?xml version="1.0" encoding="UTF-8"?>  
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">  
    <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: 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}  
        
  # 指定環境  
  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項目怎么構建

“spring cloud的commonservice-eureka項目怎么構建”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

闽侯县| 建始县| 峡江县| 东至县| 黑水县| 玉门市| 山东| 灵台县| 定西市| 寻甸| 大英县| 黑水县| 新化县| 临洮县| 乌兰察布市| 永安市| 淮滨县| 安龙县| 灵寿县| 定南县| 从化市| 枝江市| 濮阳市| 玉山县| 泸州市| 凤山市| 乡城县| 建始县| 新沂市| 宁安市| 张家口市| 敦煌市| 稻城县| 珠海市| 灵璧县| 阿拉善盟| 长阳| 信阳市| 丘北县| 鄱阳县| 韩城市|