如何在Spring Boot中的application.properties中指定外部属性文件?

时间:2019-03-24 19:17:42

标签: java spring spring-boot properties path

我有一个项目Projects/MyApp

我有外部属性文件Projects/files

我尝试在application.properties中使用:

spring.config.location=classpath:../files

files目录包含application-database.properties

我也尝试过spring.config.location=file:../files/application-database.properties

但是它不起作用。怎么了?

1 个答案:

答案 0 :(得分:1)

据我了解,您在application-database.properties文件中对数据库使用什么属性,并且您不想在构建后在war文件中获得凭证。您可以将数据库凭据放入Idea Environment Variables并从.properties文件中删除。你怎么看待这件事? enter image description here