方法一:
选择spring.profiles.active
spring.profiles.active=prod
spring.profiles.active=dev
方法二:
选择spring.profiles.default
spring.profiles.default=prod
spring.profiles.default=dev
如果当spring.profiles.active属性被设置时,那么Spring会优先使用该属性对应值来激活Profile。当spring.profiles.active没有被设置时,那么Spring会根据spring.profiles.default属性的对应值来进行Profile进行激活。如果上面的两个属性都没有被设置,那么就不会有任务Profile被激活,只有定义在Profile之外的Bean才会被创建。
方法三:使用@ActiveProfiles("dev")
博客地址:https://blog.csdn.net/xiang__liu,https://www.cnblogs.com/xiang--liu/