1、多Profile文件
我们在主配置文件编写的时候,文件名可以是application-{profile}.properties/yml默认使用application.properties的配置2、yml支持多文档块方式
server: port: 8081Spring: profiles: active: prd---server: port: 8083spring: profiles: dev---server: port: 8084spring: profiles: prd #指定属于哪个环境
3、激活指定profile
1、在配置文件中指定spring.profiles.active=dev2、命令行;--spring.profiles.active=devjava -jar spring-boot-02-config-0.0.1-SNAPSHOT.jar --spring.profiles.active=dev;可以直接在测试的时候,配置传入命令行参数3、虚拟机参数-Dspring.profiles.active=dev