如何在Spring应用程序中读取系统环境变量上下文
2022-08-31 08:58:39
如何在应用程序上下文中读取系统环境变量?
我想要这样的东西:
<util:properties id="dbProperties"
location="classpath:config_DEV/db.properties" />
或
<util:properties id="dbProperties"
location="classpath:config_QA/db.properties" />
取决于环境。
我可以在应用程序上下文中使用类似的东西吗?
<util:properties id="dbProperties"
location="classpath:config_${systemProperties.env}/db.properties" />
其中,实际值是根据系统环境变量设置的
我使用的是 Spring 3.0