V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
qm332207252
V2EX  ›  Java

spring 自定义配置文件多环境切换

  •  
  •   qm332207252 · 2022-02-17 09:58:11 +08:00 · 1780 次点击
    这是一个创建于 793 天前的主题,其中的信息可能已经有所发展或是发生改变。

    spring 自定义配置文件,使用@PropertySource注解,然后多环境切换,比如redis-dev.properties,redis-test.properties...,使用@Value获取属性,idea 能够很好的支持通过点击@Value里配置的值跳转指定配置文件指定属性上,有什么好的方式吗?

    6 条回复    2022-02-17 11:20:09 +08:00
    tunzao
        1
    tunzao  
       2022-02-17 10:01:15 +08:00
    Spring profile
    qm332207252
        2
    qm332207252  
    OP
       2022-02-17 10:03:32 +08:00
    @tunzao 是自定义配置文件,不是 spring 系统配置文件
    javapythongo
        3
    javapythongo  
       2022-02-17 10:08:56 +08:00
    配置中心
    Mjhhh
        4
    Mjhhh  
       2022-02-17 10:18:34 +08:00
    nacos
    BiChengfei
        5
    BiChengfei  
       2022-02-17 10:26:25 +08:00
    https://www.cnblogs.com/suizhikuo/p/12909007.html
    ```
    @PropertySource( name="jdbc-bainuo-dev.properties",value= {"classpath:config/jdbc-bainuo-$ {spring.profiles.active}.properties"},ignoreResourceNotFound=false,encoding="UTF-8")
    ```
    你想要的应该是这个吧
    jorneyr
        6
    jorneyr  
       2022-02-17 11:20:09 +08:00
    spring.config.import=optional:file:./dev.properties: This will trigger the import of a dev.properties file in current directory (if such a file exists). Values from the imported dev.properties will take precedence over the file that triggered the import. In the above example, the dev.properties could redefine
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2571 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 25ms · UTC 04:55 · PVG 12:55 · LAX 21:55 · JFK 00:55
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.