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

前端 未结 3 1984
后悔当初
后悔当初 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:04

    val config = ConfigFactory.load("pathtoFile/FileName.propertes") 
    

    works, too.

提交回复
热议问题