一项服务的所有配置文件的通用属性:spring cloud config

我想为一项服务在所有配置文件中设置通用属性。怎么做?现在我有以下结构


application.properies

service1

   profile1

       service1.properties

   profile2

       service1.properties

service2

   profile1

       service2.properties

   profile2

       service2.properties

如何共享所有配置文件的共同属性service1?


猛跑小猪
浏览 133回答 1
1回答

慕哥9229398

bootstrap.yml您可以在或bootstrap.properties文件中定义这些属性:application:&nbsp; &nbsp; name: "service1"cloud:&nbsp; &nbsp; config:&nbsp; &nbsp; &nbsp; uri: "http://<hostname>:<port>"# ... more common properties
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java