ConditionalOnProperty

更新时间:2023-06-03 07:25:42 阅读: 评论:0

ConditionalOnProperty
鲲鱼
惊涛拍岸配置Spring Boot通过@ConditionalOnProperty来控制Configuration是否⽣效
耳垂厚>肺动脉压正常值
1、matchIfMissing属性:从application.properties中读取某个属性值,如果该值为空,默认值为true
破费@Configuration
@ConditionalOnClass({ Feign.class })
@ConditionalOnProperty(value = "abled", matchIfMissing = true)
public class OAuth2FeignAutoConfiguration {
@Bean
@ConditionalOnBean(OAuth2ClientContext.class)
public RequestInterceptor oauth2FeignRequestInterceptor(OAuth2ClientContext oauth2ClientContext) {
return new OAuth2FeignRequestInterceptor(oauth2ClientContext);
诟骂}
}
2、havingValue属性:通过其两个属性name以及havingValue来实现的,其中name⽤来从application.properties中读取某个属性值,如果该值为空,则返回fal;如果值不为空,则将该值与havingValue指定的值进⾏⽐较,如果⼀样则返回true;否则返回fal。如果返回值
为fal,则该configuration不⽣效;为true则⽣效。
@Configuration
//如果synchronize在配置⽂件中并且值为true
阳虚山
@ConditionalOnProperty(name = "synchronize", havingValue = "true")
public class SecondDatasourceConfig {
@Bean(name = "SecondDataSource")
@Qualifier("SecondDataSource")
小海兔的故事
@ConfigurationProperties(prefix = "d.datasource")
public DataSource jwcDataSource() {
ate().build();
}
}

本文发布于:2023-06-03 07:25:42,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/82/844456.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:返回   肺动脉   指定   是否   读取   海兔
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图