首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

spring2.5与Quartz的小例证

2012-10-06 
spring2.5与Quartz的小例子applicationContext-quartz.xml?xml version1.0 encodingUTF-8?beans

spring2.5与Quartz的小例子
applicationContext-quartz.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:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd"
default-lazy-init="false">
 
<!-- task -->
<!-- 定义了一个任务 -->
<bean id="quartzClock" >
   <property name="jobDetail">
    <ref bean="quartzClock"></ref>
   </property>
   <property name="cronExpression">
    <value>3 * * * * ?</value>
   </property>
</bean>
 
<!--第三步 启动定时任务,注意这里的ref bean -->
<bean  id="schedulerFactoryBean" ,new Date()));
}
}

热点排行