Interface Condition
- All Known Subinterfaces:
ConfigurationCondition
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A single
condition
that must be matched in order
for a component to be registered.
Conditions are checked immediately before the bean-definition is due to be registered and are free to veto registration based on any criteria that can be determined at that point.
Conditions must follow the same restrictions as BeanFactoryPostProcessor
and take care to never interact with bean instances. For more fine-grained control
of conditions that interact with @Configuration
beans consider implementing
the ConfigurationCondition
interface.
- Since:
- 4.0
- Author:
- Phillip Webb
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionboolean
matches
(ConditionContext context, AnnotatedTypeMetadata metadata) Determine if the condition matches.