spring – 具有动态属性的@TestPropertySource

前端之家收集整理的这篇文章主要介绍了spring – 具有动态属性的@TestPropertySource前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在使用@TestPropertySource覆盖我的集成测试中的application.yml属性,以用于Spring启动应用程序.

@TestPropertySource(properties = { "repository.file.path=src/test/resources/x" })

我想知道是否有某种方法可以使属性VALUE动态化.像这样的东西:

 @TestPropertySource(properties = { "repository.file.path=PropertyValueProvider.class" })

感谢您的反馈.在我的情况下,属性值是系统特定的,应该在测试运行时生成.

最佳答案
@TestPropertySource仅提供用于配置PropertySources的声明性机制. Spring参考手册中的Documentation.

如果您需要编程支持将PropertySource添加到Environment,您应该实现一个ApplicationContextInitializer,它可以通过@ContextConfiguration(initializers = …)注册. “春季参考手册”中的@L_403_2@.

问候,

Sam(Spring TestContext Framework的作者)

原文链接:https://www.f2er.com/spring/431691.html

猜你在找的Spring相关文章