Wenn in der Bereitstellungsumgebung mehrere JDK vorhanden sind und die Standard-JDK-Version niedriger als JDK8 ist. Wenn wir eine Springboot-Anwendung bereitstellen, müssen wir jdk als jdk8 oder höher angeben. Es entsteht ein Problem: Die externe Konfigurationsdatei der Springboot-Anwendung kann nicht geladen werden und es wird immer die in das Anwendungs-JAR importierte Standardkonfigurationsdatei verwendet.
Es gibt zwei Möglichkeiten, dieses Problem zu lösen:
Startparameter hinzufügen --spring.config.additional-location--spring.config.additional-location
nohup /home/jdk1.8.0_251/bin/java -Xms256m -Xmx256m -jar /opt/test-app/jar/service-oa.jar --spring.config.additional-location=/opt/test-app/config/application-dev.yml,/opt/test-app/config/application.yml > /opt/test-app/logs/app.log 2>&1 &
注意:--spring.config.additional-location
之后需要加全路径名,若有多个配置文件,可以用英文逗号隔开。特别的,如果多个配置文件在同一个文件夹中,也可以这样配置:
nohup /home/jdk1.8.0_251/bin/java -Xms256m -Xmx256m -jar /opt/test-app/jar/service-oa.jar --spring.config.additional-location=/opt/test-app/config/ > /opt/test-app/logs/app.log 2>&1 &
添加启动参数 --spring.config.location
nohup /home/jdk1.8.0_251/bin/java -Xms256m -Xmx256m -jar /opt/test-app/jar/service-oa.jar --spring.config.location=/opt/test-app/config/application-dev.yml,/opt/test-app/config/application.yml > /opt/test-app/logs/app.log 2>&1 &
注意:--spring.config.location
之后需要加全路径名,若有多个配置文件,可以用英文逗号隔开。特别的,如果多个配置文件在同一个文件夹中,也可以这样配置:
nohup /home/jdk1.8.0_251/bin/java -Xms256m -Xmx256m -jar /opt/test-app/jar/service-oa.jar --spring.config.location=/opt/test-app/config/ > /opt/test-app/logs/app.log 2>&1 &
那么,以上两个启动参数有什么区别呢?--spring.config.additional-location
后面的配置文件会和默认配置(springboot应用jar包中打入的配置文件)形成互补的关系,但是它具有更高的优先级。
--spring.config.location
后面的配置文件具有强制性,即一旦添加--spring.config.location
,默认配置(springboot应用jar包中打入的配置文件)就失效了,完全以--spring.config.location
后面的配置文件为准。
在低版本的springboot中,--spring.config.additional-location
并不会生效,这时候只能使用--spring.config.location
了。
比如: 在springboot 2.3.6.RELEASE版本,--spring.config.additional-location
rrreee
--spring.config.additional-location Es muss der vollständige Pfadname folgen. Wenn mehrere Konfigurationsdateien vorhanden sind, können diese durch englische Kommas getrennt werden. Insbesondere wenn sich mehrere Konfigurationsdateien im selben Ordner befinden, können diese auch wie folgt konfiguriert werden: #🎜🎜#rrreee#🎜🎜##🎜🎜##🎜🎜#Startparameter hinzufügen <code>--spring.config. location
#🎜🎜#rrreee#🎜🎜#Hinweis: Sie müssen den vollständigen Pfadnamen nach --spring.config.location
hinzufügen, falls vorhanden Es handelt sich um mehrere Konfigurationsdateien, die durch englische Kommas getrennt werden können. Insbesondere wenn sich mehrere Konfigurationsdateien im selben Ordner befinden, können diese auch so konfiguriert werden: #🎜🎜#rrreee#🎜🎜#Lösungsvergleich#🎜🎜##🎜🎜#Was ist also der Unterschied zwischen den beiden oben genannten Startparameter? Wolltuch? --spring.config.additional-location
Die Konfigurationsdatei dahinter bildet eine komplementäre Beziehung zur Standardkonfiguration (die im JAR-Paket der Springboot-Anwendung eingegebene Konfigurationsdatei), hat jedoch eine höhere Priorität. #🎜🎜##🎜🎜#--spring.config.location
Die folgende Konfigurationsdatei ist obligatorisch, d. h. sobald --spring.config.location
hinzugefügt wird, Die Standardkonfiguration (die im JAR-Paket der Springboot-Anwendung eingegebene Konfigurationsdatei) ist ungültig. Die Konfigurationsdatei nach --spring.config.location
hat Vorrang. #🎜🎜##🎜🎜#Hinweis#🎜🎜##🎜🎜#In niedrigeren Versionen von Springboot wird --spring.config.additional-location
derzeit nicht wirksam Nur verwendet--spring.config.location
. --spring.config.additional-location
nicht wirksam. #🎜🎜#Das obige ist der detaillierte Inhalt vonSo geben Sie eine externe Springboot-Konfigurationsdatei in einer Multi-JDK-Umgebung an. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!