我的问题是有没有办法来获取一定的价值,并注入他们,而应用程序来达到bootstrap.yml。
我有这样的配置文件:
spring:
application:
name: myApp
cloud:
consul:
enabled: true
host: localhost
port: 8500
config:
enabled: true
datasource:
url: jdbc:oracle:thin:@localhost:1111:XXXX
username: ${nameOfVariable1}
password: ${nameOfVariable1}
driver-class-name: oracle.jdbc.OracleDriver
例如,我需要配置嵌入式tomcat的端口,或数据库凭据,我不想把它硬编码使用.yml属性文件,而不是我要放一些变量名使用.yml所以Spring会去总领事带来的价值。 可能吗?