With Spring Boot, can one use multiple @Conditional
annotations on one @Bean
definition? If so, is there a predictable order that they are resolved? In other words, can I specify both @ConditionalOnResource
and @ConditionalOnMissingBean
on the same @Bean
def? Which one would take precedence?
I'm using Spring Boot 1.0.2.RELEASE.