Quartz实现定时任务调度

匿名 (未验证) 提交于 2019-12-02 23:30:02

添加依赖

<dependency> 	<groupId>org.quartz-scheduler</groupId> 	<artifactId>quartz</artifactId> 	<version>2.2.1</version> </dependency> 

applicationContext_job.xml

<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" 	xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" 	xsi:schemaLocation=" 		http://www.springframework.org/schema/beans  		http://www.springframework.org/schema/beans/spring-beans.xsd 		http://www.springframework.org/schema/context  		http://www.springframework.org/schema/context/spring-context.xsd 		http://www.springframework.org/schema/tx  		http://www.springframework.org/schema/tx/spring-tx.xsd 		http://www.springframework.org/schema/aop  		http://www.springframework.org/schema/aop/spring-aop.xsd 		">   	 	<!-- 定义一个任务类 --> 	<bean id="mailJobBean" class="cn.itcast.erp.job.Test"> 		<!-- <property name="storedetailBiz" ref="storedetailBiz"></property> --> 	</bean> 	<!-- 任务类描述 --> 	<bean id="mailJobDetail" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"> 		<property name="targetObject" ref="mailJobBean"></property> 		<property name="targetMethod" value="syso"></property>//任务方法 	</bean> 	<!-- 触发器  --> 	<bean id="mailTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean"> 		<property name="jobDetail" ref="mailJobDetail"></property> 		<!-- 表达式,每天的9:15:3018:15:30 执行 --> 		<property name="cronExpression" value="* * *,* * * ? *"></property> 	</bean> 	<!-- 总管理容器 --> 	<bean id="startQuartz" class="org.springframework.scheduling.quartz.SchedulerFactoryBean" > 		<property name="triggers"> 			<list> 				<ref bean="mailTrigger"/> 			</list> 		</property> 	</bean> </beans> 	  
文章来源: https://blog.csdn.net/weixin_44964785/article/details/89735840
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!