一项服务的所有配置文件的通用属性:spring 云配置
Common properties for all profile of one service: spring cloud config
我想为一项服务设置跨所有配置文件的通用属性。怎么做到的?现在我有以下结构
application.properies
service1
profile1
service1.properties
profile2
service1.properties
service2
profile1
service2.properties
profile2
service2.properties
如何共享 service1
的所有个人资料的共同属性?
您可以在 bootstrap.yml
或 bootstrap.properties
文件中定义这些属性:
application:
name: "service1"
cloud:
config:
uri: "http://<hostname>:<port>"
# ... more common properties
我想为一项服务设置跨所有配置文件的通用属性。怎么做到的?现在我有以下结构
application.properies
service1
profile1
service1.properties
profile2
service1.properties
service2
profile1
service2.properties
profile2
service2.properties
如何共享 service1
的所有个人资料的共同属性?
您可以在 bootstrap.yml
或 bootstrap.properties
文件中定义这些属性:
application:
name: "service1"
cloud:
config:
uri: "http://<hostname>:<port>"
# ... more common properties