JobDetail jd = new JobDetail("myjob", sched.DEFAULT_GROUP,
HelloJob.class);
SimpleTrigger st = new SimpleTrigger("mytrigger", sched.DEFAULT_GROUP,
new Date(), null, SimpleTrigger.REPEAT_INDEFINITELY,
60L * 1000L);
Plz.check it before post.
Your Commentavadhesh baghel September 17, 2011 at 2:23 PM
//log4j:WARN No appenders could be found for logger(org.quartz.simpl.SimpleThreadPool).
//log4j:WARN Please initialize the log4j system properly
Have you found a solution for this yet?
Also i need to view the internal logs of Quartz. is there any way.
Hi, I have tried this example and it gave me errors saying that JobDetail, SimpleTrigger "Cannot instantiate the type"
JobDetail jd = new JobDetail("myjob", sched.DEFAULT_GROUP, HelloJob.class);
SimpleTrigger st = new SimpleTrigger("mytrigger", sched.DEFAULT_GROUP, new Date(), null, SimpleTrigger.REPEAT_INDEFINITELY,
60L * 1000L);
Please give me a solution
not workingdhruva April 1, 2011 at 10:59 AM
JobDetails is interface in quartz 2.0 and hence this code not working for me
Use of Quartz in hibernateRoshan Randive June 15, 2011 at 12:07 PM
How Quartz Scheduler is used in hibernate like event scheduler in MySql
impossible create instance!mthang86 July 29, 2011 at 8:41 AM
JobDetail jd = new JobDetail("myjob", sched.DEFAULT_GROUP, HelloJob.class); SimpleTrigger st = new SimpleTrigger("mytrigger", sched.DEFAULT_GROUP, new Date(), null, SimpleTrigger.REPEAT_INDEFINITELY, 60L * 1000L); Plz.check it before post.
Your Commentavadhesh baghel September 17, 2011 at 2:23 PM
Your Comment
facing the logger problem.Ashish November 11, 2011 at 1:02 PM
//log4j:WARN No appenders could be found for logger(org.quartz.simpl.SimpleThreadPool). //log4j:WARN Please initialize the log4j system properly Have you found a solution for this yet? Also i need to view the internal logs of Quartz. is there any way.
Quartz schedulersravan March 7, 2012 at 4:26 PM
who are using the Quartz scheduler program, you need to set up the commons-logging jar as well.
job details class could not be instantiatedKISHAN OMAR April 3, 2012 at 12:55 PM
pls help
Quartz Hello Worldhiran September 27, 2012 at 9:18 AM
Hi, I have tried this example and it gave me errors saying that JobDetail, SimpleTrigger "Cannot instantiate the type" JobDetail jd = new JobDetail("myjob", sched.DEFAULT_GROUP, HelloJob.class); SimpleTrigger st = new SimpleTrigger("mytrigger", sched.DEFAULT_GROUP, new Date(), null, SimpleTrigger.REPEAT_INDEFINITELY, 60L * 1000L); Please give me a solution
Post your Comment