<context-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/schedulingContext-timer.xml</param-value> </context-param> <servlet> <servlet-name>context</servlet-name> <servlet-class>org.springframework.web.context.ContextLoaderServlet</servlet-class> <load-on-startup>3</load-on-startup> </servlet> |
<bean id="timer" class="org.springframework.scheduling.timer.TimerFactoryBean"> <property name="scheduledTimerTasks"> <list> <ref local="JorwangScheduledTimerTask1"/> </list> </property> </bean> <bean id="JorTimeTask1" class="workflow.common.MyTimer"> </bean> <bean id="JorwangScheduledTimerTask1" class="org.springframework.scheduling.timer.ScheduledTimerTask"> <property name="timerTask"><ref bean="JorTimeTask1"/></property> <property name="delay"><value>10000</value></property> <property name="period"><value>86400000</value></property> </bean> |