定时任务学习整理
<listener><listener-class>org.springframework.web.context.ContextLoaderListener</listener-class></listener><context-param><param-name>contextConfigLocation</param-name><!-- 定时任务XML文件--><param-value>classpath:scheduling.xml</param-value></context-param>
?
<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"><!-- 定义被调用的类 --><bean id="scheduling" /><!-- 定义调用的对象和调用 方法 --><bean id="schedulingJob" value="false"></property></bean> <!--设置定时任务开启时间规则--><bean id="schedulingTrigger" lazy-init="false"><property name="jobDetail"><ref bean="schedulingJob"/></property><property name="cronExpression"><value>* * * * * ?</value></property></bean><!-- 总管理类 --><bean id="schedulerFactory" ><property name="triggers"><list><ref bean="schedulingTrigger"/></list></property></bean></beans>
?