我想为一项服务在所有配置文件中设置通用属性。怎么做?现在我有以下结构application.properiesservice1 profile1 service1.properties profile2 service1.propertiesservice2 profile1 service2.properties profile2 service2.properties如何共享所有配置文件的共同属性service1?
1 回答
慕哥9229398
TA贡献1877条经验 获得超6个赞
bootstrap.yml您可以在或bootstrap.properties文件中定义这些属性:
application:
name: "service1"
cloud:
config:
uri: "http://<hostname>:<port>"
# ... more common properties
添加回答
举报
0/150
提交
取消