亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

spring-cloud中如何創建配置項目

發布時間:2021-08-20 13:43:35 來源:億速云 閱讀:184 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關spring-cloud中如何創建配置項目,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

創建配置項目

在github中創建一個項目,專門用來保存我們所有項目的配置文件,項目是我的項目結構

配置項目地址:https://github.com/bigbeef/cppba-config

spring-cloud中如何創建配置項目

eureka-server.properties

eureka.client.register-with-eureka=false
eureka.client.fetch-registry=false
spring.application.name=eureka-server
server.port=18761
eureka.instance.hostname=peer1
eureka.client.serviceUrl.defaultZone=http://peer1:18761/eureka/

創建spring-cloud-config-server項目

項目結構如圖:

spring-cloud中如何創建配置項目

pom.xml核心代碼

<dependencies>
  <dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-config-server</artifactId>
  </dependency>
</dependencies>

SpringCloudConfigServerApplication.java

package com.cppba;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.config.server.EnableConfigServer;

@SpringBootApplication
@EnableConfigServer
public class SpringCloudConfigServerApplication {

  public static void main(String[] args) {
    SpringApplication.run(SpringCloudConfigServerApplication.class, args);
  }
}

application.properties

這個根據自己實際的git項目修改配置

server.port=8888

spring.application.name=config-server

spring.cloud.config.server.git.uri=https://github.com/bigbeef/cppba-config
spring.cloud.config.label=master
# spring.cloud.config.server.git.username=
# spring.cloud.config.server.git.password=

spring.cloud.config.server.git.searchPaths=\
 cppba-spring-cloud/*,\
 cppba-spring-cloud/eureka-client/*

spring.cloud.config.server.git.uri:配置git倉庫地址
spring.cloud.config.server.git.searchPaths:配置倉庫路徑,以逗號隔開
spring.cloud.config.label:配置倉庫的分支
spring.cloud.config.server.git.username:訪問git倉庫的用戶名
spring.cloud.config.server.git.password:訪問git倉庫的用戶密碼

啟動項目

訪問地址:http://127.0.0.1:8888

http請求地址和資源文件映射如下:
/{application}/{profile}[/{label}]
/{application}-{profile}.yml
/{label}/{application}-{profile}.yml
/{application}-{profile}.properties
/{label}/{application}-{profile}.properties

根據我們自己的配置,我們可以這樣訪問:http://127.0.0.1:8888/eureka-server/default/master

application -> eureka-server (應用名)
profile -> default (啟用的配置,通常是后綴,下面解釋)
label -> master (分支)

訪問到的結果就是:

spring-cloud中如何創建配置項目

profile比較重要,可以理解成讀取哪些配置文件,假如我不止一個配置文件,可能會有:

eureka-server.properties(這個是通用配置文件,默認都會加載),
eureka-server-mysql.properties,
eureka-server-oracle.properties,
eureka-server-jpa.properties,
eureka-server-mysql.properties......

我們可能會選擇性的加載其中的部分properties配置文件,那我們可以這樣寫:http://127.0.0.1:8888/eureka-server/default,mysql,jpa/master

到此,我們的spring-cloud-config-server就簡單搭起來

關于“spring-cloud中如何創建配置項目”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

南通市| 丰城市| 西丰县| 济南市| 读书| 太白县| 察隅县| 两当县| 武鸣县| 香河县| 阿克| 永康市| 衡阳县| 隆林| 含山县| 井研县| 杭锦旗| 曲阜市| 景宁| 永嘉县| 宿迁市| 嘉定区| 从化市| 澄江县| 仲巴县| 哈巴河县| 辽源市| 交城县| 昌黎县| 夏河县| 措美县| 枣庄市| 浮山县| 旺苍县| 洛阳市| 扎鲁特旗| 麦盖提县| 府谷县| 新余市| 尼勒克县| 嵊州市|