spring某些类只有在prod环境生效
spring某些类只有在prod环境生效并加载bean
@Profile("prod") // 只有prod的profile环境下,spring才会加载bean到容器中过去
@Component
@Slf4j
@Profile("prod")
public class UmpAlarmMqConsumer implements IStoppable, InitializingBean {
@Override
public void stop(String cause) {
log.info("stop from {}", cause);
}
@Override
public void afterPropertiesSet() throws Exception {
}
}
原创:做时间的朋友