美文网首页
ymal中引入其他的yml或properties[转载]

ymal中引入其他的yml或properties[转载]

作者: martin6699 | 来源:发表于2018-12-21 22:30 被阅读0次

    在开发过程中如果需要其他的配置文件,全部写到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
    
    

    原链接

    相关文章

      网友评论

          本文标题:ymal中引入其他的yml或properties[转载]

          本文链接:https://www.haomeiwen.com/subject/svhbkqtx.html