I have an OSGI scheduler bundle that has the Quartz Scheduler Jar in it. This bundle exposes just an application interface to other bundles and, when a new job is registered, it is wrapped into a temp
I am developing a front end to trigger a quartz job on the fly. I have a form in the JSF page whose click action will dynamically trigger a quart开发者_开发问答z job.
I am using Quartz as followed: schedulerFactory 开发者_如何学C= new StdSchedulerFactory(); scheduler = schedulerFactory.getScheduler();
I am writing a kind of start - pause - resume - pause - resume -(at regular intervals) kind of job in Quartz. I am using a SimpleTrigger for initial experimentation.
I want to develop a simple Java Web app to send an email notifications after some task is done, such as a request submitted for approval, and reminders (to say approvers) at开发者_StackOverflow社区 re
I am using Jboss5.1.x , EJB3.0 I am trying to configure Quartz. I get this exception when I try to do lookup:
I am using Quartz Enterprise Job Scheduler (1.8.3). The job configuration comes from several xml files and we have a special job that detects changes in these xml files and re-schedules jobs. This wor
I wrote a code in Quartz that will update database on a daily basis exactly once a day. I am using Eclipse in my web-application so had started the Tomcat through Eclipse.
My task is to generate the reports dynamically with the scheduled time specified by the user from the GUI.
I have a web application and I am trying to start Quartz scheduler programmatically in spring. I have a service class where I create an instance of S开发者_StackOverflowchedulerFactory and then get a