在spring boot中根据属性加载@configuration
Posted
技术标签:
【中文标题】在spring boot中根据属性加载@configuration【英文标题】:Load @configuration based on property in spring boot 【发布时间】:2022-01-14 01:06:00 【问题描述】:我正在学习 Spring Batch,并尝试根据某些属性加载作业配置。这可能吗,我们可以根据某些属性加载@Configuration 类吗?如果是,如何实现?
【问题讨论】:
【参考方案1】:是的,您只需要在您的@Configuration
类中使用@ConditionalOnProperty
,如下所示:
@Configuration
@ConditionalOnProperty(name = "your-property-name", havingValue = "true")
public class ConditionalConfiguration
您可以在以下在线资源中找到更多信息:
https://docs.spring.io/spring-boot/docs/current/api/org/springframework/boot/autoconfigure/condition/ConditionalOnProperty.html https://www.baeldung.com/spring-conditionalonproperty【讨论】:
以上是关于在spring boot中根据属性加载@configuration的主要内容,如果未能解决你的问题,请参考以下文章