Springcloud Config支持本地配置文件

背景:

Springcloud项目使用Springcloud-config作为分布式配置,配置参数都放在config里,不同的环境有不同的问题:

项目本地:
boostrap.yml

远程配置:
application.yml
application-local.yml
application-dev.yml
application-test.yml
application-prod.yml

其中application-local.yml是本地开发环境,由于开发时,经常修改配置,就会频繁去修改config
所以想将application-local.yml放在项目本地,而不是在config里。
也就是最终变成:

项目本地:
boostrap.yml
application-local.yml

远程配置:
application.yml
application-dev.yml
application-test.yml
application-prod.yml

调整之后,发现项目启动失败,项目并不会去读取本地的application-local.yml,需要我们来指定加载。

调整

原先的启动代码:

SpringApplication.run(Application.class, args);  

改成:

new SpringApplicationBuilder(Application.class)
    .properties("spring.config.location=classpath:application-${spring.profiles.active}.yml,classpath:bootstrap.yml")
    .run(args); 

一定要指定classpath:bootstrap.yml(如果还有其他本地文件,也是一样),如果在没有配置spring.config.location的情况下,项目会默认加载classpath:bootstrap.yml,如果指定了就只会加载指定的配置文件。

测试用例

如果用了spring-test+junit,可以通过properties指定配置文件:

@SpringBootTest(properties = {"spring.config.location=classpath:tscm-service-oem-forecast-${spring.profiles.active}.yml,classpath:bootstrap.yml"})

也就是最终是:

@SpringBootTest(classes = {Application.class},
        webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT,
        properties = {"spring.config.location=classpath:tscm-service-oem-forecast-${spring.profiles.active}.yml,classpath:bootstrap.yml"})

或者使用TestPropertySource注解:

@TestPropertySource(properties = {"spring.config.location=tscm-service-oem-forecast-${spring.profiles.active}.yml,classpath:bootstrap.yml"})

你可能感兴趣的:(springcloud,config,junit)