Typesafe config: Load additional config from path external to packaged scala application

前端 未结 3 1926
后悔当初
后悔当初 2021-01-30 16:13

My scala application will be packaged into a jar. When I run my app, it needs to read an additional config file stored externally to my app jar. I am looking for functionality s

3条回答
  •  情歌与酒
    2021-01-30 17:10

    I think what you want is:

    val myCfg =  ConfigFactory.parseFile(new File("my_path/hdfs.conf"))
    

提交回复
热议问题