I am using Spring Boot autoconfiguration to load a bean in the context in case there is at least one of 3 beans present.
I need something like:
@Bean
@ConditionalOnANYClass({ CreateHandler.class, UpdateHandler.class, DeleteHandler.class})
Any smart solution or out-of-the-box annotation for the logical OR?