spring应用quartz
近期需要用quartz跑定时任务,于是自学了一下
1)新建web项目 添加maven依赖
2)pom.xml 增加spring依赖
[spring-context 3.0.6 jar]
[spring-tx 3.0.6 jar]
[commons-collections 3.2 jar]
[quartz-all 1.6.1 jar]
编辑以后的pom.xml如下
3 )编辑web.xml,内容如下
4) 在src下新建spring.xml,内容如下
5)新建class src/ org.seven7.quartz.job.TestQuartzJob 定义如下
6) 部署应用到tomcat 启动,就会发现任务每隔5s之行。