首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 其他相关 >

定时任务学习收拾

2012-08-03 
定时任务学习整理listenerlistener-classorg.springframework.web.context.ContextLoaderListener/li

定时任务学习整理

<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>

?

热点排行