第二篇:微服务构建——Spring Boot 多环境配置

1、在resource中创建如图文件:

第二篇:微服务构建——Spring Boot 多环境配置_第1张图片

2、可以在application.properties中指定当前环境加载哪个配置文件

#加载对应环境的配置 ,默认加载dev
spring.profiles.active=test

3、可以在dev和test文件中指定当前环境特定的属性

如test文件中:

server.port=8009
spring.application.name=springCloudTest

如dev环境中

server.port=8008
spring.application.name=springCloud

这两个属性指定了特定的端口和项目名称

4、总结:

        可以在application.properties中配置通用的内容,并通过spring.profiles.active可以指定加载哪个配置文件。

 

 

 

-------------------------------------------------------------

作者是一名十足的小新,只会搬砖,有大神飘过的,请多多指正。

未完待续......

        

你可能感兴趣的:(Spring,Cloud)