反正有将文件内容注入配置属性吗?
我的意思是,我有一个application.yml
这样的配置文件
config_param: <the content of file /etc/token>
是否有将这些内容注入config_param
的地方?
编辑
这是我的bootstrap.yml
内容:
spring:
application:
name: configclient
cloud:
config:
uri: ${configserver_url}
headers:
X-Config-Token: file:${vault_token_location}
其中vault_token_location
包含文件路径。因此,该文件的内容必须填充到X-Config-Token
中。