用注解方式写定时任务

Posted 峰哥book

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用注解方式写定时任务相关的知识,希望对你有一定的参考价值。

spring里加上 
</context:component-scan>
<!-- 任务自动扫描 -->
<task:annotation-driven/>
<!-- 扫描位置 -->
<context:annotation-config/>  
    <context:component-scan base-package="com.xxx.xxx"/>

然后在类上面添加注解  @Component,声明他是一个组件

以上是关于用注解方式写定时任务的主要内容,如果未能解决你的问题,请参考以下文章

定时任务

spring定时任务的注解实现方式

spring schedule定时任务:注解的方式

springboot 基于@Scheduled注解 实现定时任务

探究 Spring 的定时任务配置

spring boot注解之@Scheduled定时任务实现