当前位置:   article > 正文

IDEA中配置properties文件_ij 编辑器 怎么在sysconfig.properties中配置本地文件名

ij 编辑器 怎么在sysconfig.properties中配置本地文件名

自从生产环境权限回收后,各种问题同时出现:测试数据库和生产数据库不一致,测试集群配置和生产集群配置文件不一致等等问题,十分难受,,,
我承认是之前开发不规范,呃呃呃。。。
于是决定采用scala读取jar包内配置文件的方式:
在这里插入图片描述
(1)在resources目录下新建 pro和test子目录
新建config.properties文件

hive.database = test
  • 1

(2)修改pom.xml打包方式
新增profiles

<profiles>
        <profile>
            <!-- 测试环境 -->
            <id>test</id>
            <properties>
                <profiles.active>test</profiles.active>
            </properties>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
        </profile>
        <profile>
            <!-- 生产环境 -->
            <id>pro</id>
            <properties>
                <profiles.active>pro</profiles.active>
            </properties>
        </profile>
    </profiles>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

修改build下resources

 <resources>
            <resource>
                <directory>src/main/resources</directory>
                <excludes>
                    <exclude>test/*</exclude>
                    <exclude>pro/*</exclude>
                </excludes>
            </resource>
            <resource>
                <directory>src/main/resources/${profiles.active}</directory>
            </resource>
        </resources>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

(3)封装ConfigManager类

import java.util.Properties
object ConfigManager {

    def main(args: Array[String]): Unit = {
        println(getConfigValue("hive.database","pro/config.properties"))
    }
    /**
      * 获取配置名称
      */
    def getConfigValue(key : String,path:String="config.properties"): String = {
    val stream =Thread.currentThread.getContextClassLoader.getResourceAsStream(path)
    val prop : Properties= new Properties()
    prop.load(stream)
    prop.getProperty(key)
    }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

其中通过修改pom.xml来切换test和pro配置文件,
本地测试&打集群测试均OK,完美解决多环境问题~

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/474622
推荐阅读
相关标签
  

闽ICP备14008679号