我想用 java ... -Denv=prod ... 启动我的程序
并且有

@PropertySource("classpath:/settings/$idontknowwhat$/database.properties")`

读取属性文件:/settings/prod/database.properties
我曾尝试使用 #{systemProperties['env']} 但它没有得到解决,但有异常(exception):
Could not open ServletContext resource ['classpath:/settings/#{systemProperties['env']}/database.properties]

最佳答案

找到了,我可以简单地使用

@PropertySource("classpath:/settings/${env}/database.properties")

关于java - 如何使用系统环境变量作为@PropertySource 值的一部分?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26387645/

10-14 10:59