spring自带定时器@Scheduled注解配置
1.仅需引入spring相关的包。
2.在xml里加入task的命名空间
xmlns:task="http://www.springframework.org/schema/task" http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.1.xsd
3.配置定时任务的线程池
<task:annotation-driven scheduler="myScheduler" mode="proxy" /> <task:scheduler id="myScheduler" pool-size="10"/>
4.写定时任务
package com.cn.springmvc.controller; import org.springframework.context.annotation.Lazy; import org.springframework.scheduling.annotation.EnableScheduling; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Component; /** * @author wyy * @date 2017年4月7日 */ @Component @Lazy(false) @EnableScheduling public class TaskJob { @Scheduled(cron = "0/5 * * * * *") public void job1() { System.out.println("任务进行中。。。"); } }
总结:
1.配置定时任务线程池可以同时执行同一时间的任务,否则是按照顺序执行。
2.如果xml里面开启的懒加载,default-lazy-init="true",需要有@Lazy(false)注解
相关推荐
burning 2016-03-11
Holyn 2014-11-21
zlllxl00 2015-12-14
hellowordmonkey 2015-10-16
UsherOu 2015-03-25
马勒格彼得 2014-12-15
也许不会看见 2014-11-22
RogerCoderLife 2014-11-06
kyle00 2014-08-22
haidaoxianzi 2014-03-06
hellowordmonkey 2012-10-10
晨曦 2012-09-07
EdwardWong 2012-07-18
mxcsdn 2011-08-17
AABBbaby 2011-07-06
chaojiwanwan 2011-06-10
congcongsuiyue 2011-03-23