用注解方式写定时任务
Posted 峰哥book
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用注解方式写定时任务相关的知识,希望对你有一定的参考价值。
spring里加上
</context:component-scan>
<!-- 任务自动扫描 -->
<task:annotation-driven/>
<!-- 扫描位置 -->
<context:annotation-config/>
<context:component-scan base-package="com.xxx.xxx"/>
然后在类上面添加注解 @Component,声明他是一个组件
<!-- 任务自动扫描 -->
<task:annotation-driven/>
<!-- 扫描位置 -->
<context:annotation-config/>
<context:component-scan base-package="com.xxx.xxx"/>
然后在类上面添加注解 @Component,声明他是一个组件
以上是关于用注解方式写定时任务的主要内容,如果未能解决你的问题,请参考以下文章