我有一个依赖的jar文件,我已将其作为依赖项添加。有没有办法获取使用依赖jar中的application.properties文件?
答案 0 :(得分:1)
让属性spring.config.location指向该application.properties 像
spring.config.location=classpath:com/company/whatever/application.properties
启动应用程序时,可以在命令行上设置spring.config.location
$ java -jar myproject.jar --spring.config.location=classpath:com/company/whatever/application.properties
您可以在spring boot docs
中找到此解释