@ConditionalOnProperty(
时间: 2023-11-16 14:01:05 浏览: 64
Spring Boot中@ConditionalOnProperty的使用方法
5星 · 资源好评率100%
name = "my.property", havingValue = "true")的作用是什么?
答案:@ConditionalOnProperty(name = "my.property", havingValue = "true")的作用是在配置文件中存在名为my.property的属性时加载对应的配置类或方法。其中,name指定属性的名称,havingValue指定属性的值。只有当配置文件中存在名为my.property且值为true的属性时,才会加载对应的配置类或方法。
阅读全文