PropertyPlaceholderConfigurer 和依赖
在下面的代码片段中,
<bean id="placeholderProperties" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"
depends-on="environment">
<property name="location" value="classpath:batch-${ENVIRONMENT}.properties" />
“depends-on”的意义是什么以及如何操纵 ${ENVIRONMENT} 的值?
系统的环境变量中的Environment是指我的系统变量吗?
In the below code snippet
<bean id="placeholderProperties" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"
depends-on="environment">
<property name="location" value="classpath:batch-${ENVIRONMENT}.properties" />
what is the significance of "depends-on" and how to manipulate the value of ${ENVIRONMENT} ??
is the Environment referring to my system variable in the environment variables of the system?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查这个< /a>
在您的情况下,具有 id
environment
的 bean 必须在“placeholderProperties”之前Check this
In your case bean with id
environment
must get initialized before "placeholderProperties"