dev环境配置
@Profile({"dev","test"})
@PropertySource("classpath:dev.properties")
public class DevConfigLoader {
}
@Profile("prod")
@PropertySource("classpath:prod.properties")
public class ProdConfigLoader {
}
@Profile 注解可以根据当前环境加载当前配置类,而@PropertySource可以加载其他jar包下的classpath文件。