如何在 Spock 测试中将 @Value 注释与 Spring PropertyPlaceholderConfigurer 一起使用?

发布于 2024-11-18 08:59:50 字数 464 浏览 5 评论 0原文

是否可以将 @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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

℉絮湮 2024-11-25 08:59:50

如果您已经设置了 util:properties,则无需使用 PropertyPlaceholderConfigurer。在您的 bean 配置中,创建 util:properties bean,然后在您的类中进行注释,如

@Value("#{myProps.someProperty}")

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

@Value("#{myProps.someProperty}")

http://forum.springsource.org/showthread.php?69602-Value-and-PropertyPlaceholderConfigurer

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文