欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

spring定时器配置

程序员文章站 2022-06-09 10:48:41
...

在spring-servlet.xml文件中:
xmln后加上: xmlns:task=”http://www.springframework.org/schema/task”
spring定时器配置
在最后加上

  http://www.springframework.org/schema/task
  http://www.springframework.org/schema/task/spring-task-3.1.xsd

spring定时器配置
加入:

<task:annotation-driven/>
<context:annotation-config/>
<bean class="org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor"/>
<context:component-scan base-package="com.loan"/>

其中”com.loan”为所写serviceImpl所在文件位置。
写定时逻辑时,一般时service和serviceImpl,其中返回值为空。
如下为serviceImpl的配置:
spring定时器配置

spring定时器配置
其中cron=”0 * /5 * * * ?“ 每5分钟执行courseQueue中的内容。

相关标签: spring