ymal中引入其他的yml或properties

在开发过程中如果需要其他的配置文件,全部写到application.yml中感觉太臃肿,这时,我们可以将yml拆分成多个yml或者properties文件

  • 在配置文件目录(如:resources)下新建application-xx开头的properties或者yml文件
application-test.yml
application-prod.yml
application-dev.yml
  • 然后再在application.yml中添加配置
spring:
  profiles:
      include:
          test,api,jdbc

注意,不能换行,include:下面的test,api,jdbc,多个用英文逗号分隔

  • 然后在程序中就同时可以访问test,prod,dev中的东西了
  @Value('${qq.key}')
  private String qq

  @Value('${weixin.key}')
  private String weixin

  @Value('${a.b.c}')
  private String t

  @Value('${aa.bb}')
  private String tt

你可能感兴趣的:(web开发)