在spring 中 基于注解的 定时配置很简单,只需要三步哦,如下:1、在类名前加@Component注解,标记该bean,也就是配置扫描标记。2、在该类下的方法前加定是配置注解,@Schedule("cron= 0/30 * * * * *")。3、添加配置文件。