通过设定Enviroment的ActiveProfiles来决定当前context需要使用的配置环境,在开发中使用@Profile注解类或方法达到在不同情况下选择实例化不同的Bean
通过指定配置
spring.profiles.active=dev
@profile(“dev”)注解在类上,该类中的bean会被加载,名称不匹配不会被加载
通过设定Enviroment的ActiveProfiles来决定当前context需要使用的配置环境,在开发中使用@Profile注解类或方法达到在不同情况下选择实例化不同的Bean
通过指定配置
spring.profiles.active=dev
@profile(“dev”)注解在类上,该类中的bean会被加载,名称不匹配不会被加载
转载于:https://my.oschina.net/u/3345581/blog/904118