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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用spring的@Scheduled注解执行定时任务,启动项目不输出警告相关的知识,希望对你有一定的参考价值。

在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注解执行定时任务,启动项目不输出警告的主要内容,如果未能解决你的问题,请参考以下文章

Spring使用@Scheduled注解配置定时任务

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

Spring Boot整合@Scheduled定时计划

使用spring@Scheduled进行任务定时

使用spring提供的@Scheduled注解创建定时任务

Spring boot实现定时任务二:使用注解@scheduled和@EnableScheduling