条件化bean
条件化bean
@Bean
@Conditional(MagicExistsCondition.class)
public MagicBean magicBean(){
return new MagicBean();
}public inteface condition{
boolean matches(ConditionContext ctxt,
AnnotatedTypeMetadata metadata);
}Last updated