在下面的代码片段中
<bean id="placeholderProperties" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"
depends-on="environment">
<property name="location" value="classpath:batch-${ENVIRONMENT}.properties" />
“取决于”的意义是什么以及如何操纵 ${ENVIRONMENT} 的值?
Environment是指系统环境变量中我的系统变量吗?