码迷,mamicode.com
首页 > 编程语言 > 详细

spring定时器用Annotation兑现

时间:2016-12-20 15:59:44      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:文章   res   end   sse   expr   str   .com   eth   使用情况   

spring定时器用Annotation实现

0人收藏此文章, 我要收藏发表于3个月前 , 已有46次阅读 共0个评论

1.ApplicationContext.xml配置

a)、需要在xmlns里面加入:
xmlns:task="http://www.springframework.org/schema/task" 

b)、在xsi:schemaLocation中加入
http://www.springframework.org/schema/task
http://www.springframework.org/schema/task/spring-task-3.0.xsd(别忘了最后的引号)

c)、加入配置
<context:component-scan base-package="com.netease.lee" /><!--需要扫描的包--> 
<context:annotation-config /><!--开启注解--> 
<task:annotation-driven/> <!-- 这句是重点 定时器开关-->

d)、web.xml
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
< /listener>

2.完全注解方式

@Service
public class AnnotationQuartz {
@Scheduled(cron="0,10,20,30,40,50 * * * * ?") //需要注意@Scheduled这个注解,它可配置多个属性:cron\fixedDelay\fixedRate
public void test(){
System.out.println("0.0");
}
}

3.注解加配置方式

@Component(如果你的项目使用的是注解而不是配置文件中写bean,那么需要加上@Component,确保这个类已经注入)
public class AnnotationQuartz {
public void test()
{
System.out.println("0.0");
}
}

spring的ApplicationContext.xml中的配置:
<task:scheduled-tasks> 
<task:scheduled ref="chartsService" method="test" cron="0 0,15,30,45 * * * ?"/> 
< /task:scheduled-tasks>

4.相关文章

http://blog.springsource.com/2010/01/05/task-scheduling-simplifications-in-spring-3-0/

http://jooben.blog.51cto.com/253727/406277

 

5.实际使用情况

按如上配置之后,定时器根本就没反应,不知道哪里的问题,还是用老方法,配置方式吧

<bean id="smsSenderTimerQuarz" class="sunit.app.timer.SMSSenderTimer"/> 

<bean id="quartzSMSSender" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
<property name="targetObject">
<ref bean="smsSenderTimerQuarz"/>
</property>
<property name="targetMethod">
<value>smsSender</value>
</property>
</bean>

<bean id="quartzSMSSenderTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean">
<property name="jobDetail">
<ref bean="quartzSMSSender"/>
</property>
<property name="cronExpression">
<value>0 0/5 * * * ?</value> 
</property>
</bean>

spring定时器用Annotation兑现

标签:文章   res   end   sse   expr   str   .com   eth   使用情况   

原文地址:http://www.cnblogs.com/person008/p/6202926.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!