The most common usage would be to include or exclude the whole configuration class:
xxxxxxxxxx
@Configuration
class DevEnvLoggingConfiguration {
@Bean
@Conditional(IsDevEnvCondition.class)
LoggingService loggingService() {
return new LoggingService();
}
}