Spring注解定时任务
Posted 逝年的我们
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring注解定时任务相关的知识,希望对你有一定的参考价值。
xmlns:task="http://www.springframework.org/schema/task" xsi:schemaLocation=" http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.0.xsd <task:scheduler id="myScheduler" pool-size="5"/> <task:annotation-driven scheduler="myScheduler"/> @Scheduled(cron = "0/5 * * * * ?") public void login()throws Exception{ System.out.println("王华"); }