作者:o_cYj
博客专栏:
https://blog.youkuaiyun.com/o_cYj
项目git:
https://github.com/chenyingjun/springboot2-task
欢迎Star
使用@EnableScheduling方式
@Component
@Configurable
@EnableScheduling
public class Task1 {
private static Log logger = LogFactory.getLog(Task1.class);
@Scheduled(cron = "0/2 * * * * * ")
public void execute() {
logger.info("Task1>>" + new Date());
}
}
xml配置方式
application
启动加入读取xml
文件
@SpringBootApplication
@ImportResource(value = {
"classpath:applicationContext*.xml" })
public class Springboot2TaskApplication {
public static void main(String[] args) {
SpringApplication.run(Springboot2TaskApplication.class, args);
}
}
<context:component-scan base-package="com.chenyingjun.task.schedual"></context:component-scan>
<task:scheduler id="appScheduler" pool-size="2" />
<!-- 调整定时任务 -->
<task:scheduled-tasks>
<task:scheduled ref="task2" method="method2" cron="0/10 * * * * ?"/>
</task:scheduled-tasks>
@Service
public class Task2 {
private