首页 > 代码库 > Java任务调度开源框架quartz学习

Java任务调度开源框架quartz学习

一、quartz学习

Java框架介绍:Quartz从入门到进阶

http://edu.yesky.com/edupxpt/233/2209233.shtml

 

例子:http://javacrazyer.iteye.com/blog/675460

http://blog.csdn.net/lotusyangjun/article/details/6450421

官网:http://www.quartz-scheduler.org

 

二、ScheduledThreadPoolExecutor学习

JDK5以后 Java引入了ScheduledThreadPoolExecutor,理论上已经不需要再用timer了

Timer和ScheduledThreadPoolExecutor的区别http://blog.csdn.net/masterseventeen/article/details/3443114

使用ScheduledThreadPoolExecutor代替Timer&TimerTask:http://web.cutt.com/article/1686596369

http://dongxuan.iteye.com/blog/901689

Java任务调度开源框架quartz学习