SpringCloud2020 bootstrap 配置文件失效的解決方法
Spring Cloud 2020版本 bootstrap 配置文件(properties 或者 yml)無(wú)效
如何解決?
背景介紹
微服務(wù)是基于Spring Cloud框架搭建的,Spring Cloud Config作為服務(wù)配置中心。
業(yè)務(wù)服務(wù)只配置服務(wù)名稱、啟用環(huán)境和config的URL地址,其他都配置在配置中心,例如服務(wù)端口、服務(wù)注冊(cè)中心地址等??稍陂_(kāi)發(fā)環(huán)境(dev)、測(cè)試環(huán)境(test)和生產(chǎn)環(huán)境(prod)分別配置。
所以預(yù)想的啟動(dòng)流程是:先加載配置文件,再啟動(dòng)服務(wù)。
之前的做法是,將配置文件名稱改為:bootstrap.properties。
問(wèn)題
之前直接就可以用,而現(xiàn)在,啟動(dòng)的端口是8080,明顯沒(méi)有加載到bootstrap.properties文件,我以為我的文件名字寫(xiě)錯(cuò)了,核對(duì)了幾次,確認(rèn)無(wú)誤,我猜想估計(jì)是bootstramp.properties配置文件沒(méi)有生效。
之前的版本:
- spring boot 2.3.1.RELEASE
- spring cloud Hoxton.SR4
當(dāng)前版本:
- spring boot 2.4.2
- spring cloud 2020.0.1
查找原因
根據(jù)上面出現(xiàn)的問(wèn)題,我使用百度搜索了下,大概的原因知道了:從Spring Boot 2.4版本開(kāi)始,配置文件加載方式進(jìn)行了重構(gòu)。
另外也有配置的默認(rèn)值變化,如下:
Spring Boot 2.3.8.RELEASE
package org.springframework.cloud.bootstrap;
public class BootstrapApplicationListener implements ApplicationListener<ApplicationEnvironmentPreparedEvent>, Ordered {
public void onApplicationEvent(ApplicationEnvironmentPreparedEvent event) {
ConfigurableEnvironment environment = event.getEnvironment();
if ((Boolean)environment.getProperty("spring.cloud.bootstrap.enabled", Boolean.class, true)) {
Spring Boot 2.4.2
package org.springframework.cloud.util;
public abstract class PropertyUtils {
public static boolean bootstrapEnabled(Environment environment) {
return (Boolean)environment.getProperty("spring.cloud.bootstrap.enabled", Boolean.class, false) || MARKER_CLASS_EXISTS;
}
傳統(tǒng)解決方案
其實(shí)官網(wǎng)說(shuō)得很明白??聪旅孢@段:
Config First Bootstrap
To use the legacy bootstrap way of connecting to Config Server, bootstrap must be enabled via a property or the spring-cloud-starter-bootstrap starter. The property is spring.cloud.bootstrap.enabled=true. It must be set as a System Property or environment variable. Once bootstrap has been enabled any application with Spring Cloud Config Client on the classpath will connect to Config Server as follows: When a config client starts, it binds to the Config Server (through the spring.cloud.config.uri bootstrap configuration property) and initializes Spring Environment with remote property sources.The net result of this behavior is that all client applications that want to consume the Config Server need a bootstrap.yml (or an environment variable) with the server address set in spring.cloud.config.uri (it defaults to "http://localhost:8888").
兩個(gè)關(guān)鍵點(diǎn):
1、加一個(gè)依賴:spring-cloud-starter-bootstrap
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-bootstrap</artifactId> </dependency>
2、加一個(gè)配置:spring.cloud.config.uri
bootstrap.properties
# 應(yīng)用名稱
spring.application.name=erwin-cloud-user
# 啟用環(huán)境
spring.profiles.active=dev
# 配置文件
spring.cloud.config.label=${spring.application.name}
spring.cloud.config.name=${spring.application.name}
spring.cloud.config.profile=${spring.profiles.active}
spring.cloud.config.uri=http://localhost:9000
解決方案
現(xiàn)在,你只需要這樣:
application.properties
# 應(yīng)用名稱
spring.application.name=erwin-cloud-user
# 啟用環(huán)境
spring.profiles.active=dev
spring.config.import=optional:configserver:http://localhost:9000
spring.cloud.config.label=${spring.application.name}
spring.cloud.config.name=${spring.application.name}
spring.cloud.config.profile=${spring.profiles.active}
到此這篇關(guān)于SpringCloud2020 bootstrap 配置文件失效的解決方法的文章就介紹到這了,更多相關(guān)SpringCloud2020 bootstrap 配置內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
java 實(shí)現(xiàn)最小二叉樹(shù)堆排序的實(shí)例
這篇文章主要介紹了java 實(shí)現(xiàn)最小二叉樹(shù)堆排序的實(shí)例的相關(guān)資料,希望通過(guò)本文能幫助到大家,需要的朋友可以參考下2017-09-09
詳解Spring 兩種注入的方式(Set和構(gòu)造)實(shí)例
本篇文章主要介紹了Spring 兩種注入的方式(Set和構(gòu)造)實(shí)例,Spring框架主要提供了Set注入和構(gòu)造注入兩種依賴注入方式。有興趣的可以了解一下。2017-02-02
Spring Boot集成Shiro實(shí)現(xiàn)動(dòng)態(tài)加載權(quán)限的完整步驟
IntelliJ IDEA之配置JDK的4種方式(小結(jié))
Java同步鎖synchronized用法的最全總結(jié)
詳解Java的Hibernate框架中的緩存與原生SQL語(yǔ)句的使用
Java實(shí)現(xiàn)字符串和輸入流的相互轉(zhuǎn)換

