很实用,建议收藏
@Scheduled(cron = “0/4 * * * * ?”)
springboot 定时任务注解 用起来简直不要太shuang,
我们有时在部署测试环境时,并不需要定时任务执行,再去掉注解显然太麻烦,所以我们给定时任务加个开关
默认开启
代码:
@ConditionalOnProperty(prefix = "scheduling", name = "enabled", havingValue = "true")
配置文件:
scheduling.enabled=false