添加依赖
<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:30 和 18: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