码迷,mamicode.com
首页 > 编程语言 > 详细

使用spring的@Scheduled注解执行定时任务,启动项目不输出警告

时间:2016-10-12 11:35:06      阅读:1402      评论:0      收藏:0      [点我收藏+]

标签:

在applicationContext.xml中添加:

xmlns:task="http://www.springframework.org/schema/task"
xsi:schemaLocation="http://www.springframework.org/schema/task
http://www.springframework.org/schema/task/spring-task-4.0.xsd">


<task:annotation-driven executor="myExecutor" scheduler="myScheduler" />
<task:executor id="myExecutor" pool-size="5" />
<task:scheduler id="myScheduler" pool-size="10" />

 

java代码:

@Component
public class CleanExpireTokenTask {

    private Logger logger = LoggerFactory.getLogger(LogTag.BUSINESS);
    
    @Scheduled(cron = "0 * * * * ?")
    public void startUpdateSaleThread(){
        try{
            System.out.println("check token expire");
        }catch(Exception e){
            logger.error("Make salesReport faild",e);
        }
    }
}

 

注意:

实现类上要加注解@Component

定时器的任务方法不能有返回值

配置及启动报错问题参考自
 

使用spring的@Scheduled注解执行定时任务,启动项目不输出警告

标签:

原文地址:http://www.cnblogs.com/feng-gamer/p/5951707.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!