如何在 Spock 测试中将 @Value 注释与 Spring PropertyPlaceholderConfigurer 一起使用?
是否可以将 @Value 注释与 Spring PropertyPlaceholderConfigurer 一起使用?
>
与 @Value 配合使用正确,但我想使用 1 种配置方式。现在我让它们都指向同一个属性文件。
It is possible to use the @Value annotation with a Spring PropertyPlaceholderConfigurer?
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" p:location="classpath:application-test.properties" />
The <util:properties id="appProperties" location="classpath:application-test.properties" />
works correct with @Value but i would like to use 1 way of configuring. Now i have the both of them pointing towards the same property file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您已经设置了 util:properties,则无需使用 PropertyPlaceholderConfigurer。在您的 bean 配置中,创建 util:properties bean,然后在您的类中进行注释,如
http://forum.springsource.org/showthread.php?69602-Value-and-PropertyPlaceholderConfigurer
You do not need to use a PropertyPlaceholderConfigurer if you have already setup util:properties. In your bean config, create the util:properties bean and then within your classes annotate like
http://forum.springsource.org/showthread.php?69602-Value-and-PropertyPlaceholderConfigurer