quartz-scheduler Questions

5

Solved

I'm using the Quartz Scheduler in my application and I get the exception: Trigger does not reference the given job... Looking at my code I can't seem to see where the problem could be. var sched...
Peregrinate asked 17/9, 2014 at 16:13

5

Solved

I received the error below when I use Spring 3 with Quartz 2. Does anyone knows the reason? Error: Exception in thread "main" org.springframework.beans.factory.CannotLoadBeanClassException: Error...
York asked 23/11, 2011 at 15:56

3

Solved

I'm hoping one of you lovely people will be able to help me with this, as I've spent a number of fruitless hours already trying to make everything play nice! I've traced the issue down to Classlo...
Sophistication asked 22/5, 2012 at 14:52

2

Is there an API to determine the last execution time of a quartz job. Thanks, Sandhya
Wini asked 26/11, 2009 at 7:19

2

Solved

I have a Scheduler object in my application and I add Jobs to it using the scheduleJob method. In my code I schedule Jobs with an instant Trigger: TriggerBuilder.newTrigger().startNow().build(); ...
Mettle asked 21/3, 2014 at 10:32

11

Is there a way in Java to find the "Last Fired Time" from a Cron Expression? E.g. If now = 25-Apr-2010 10PM, and the cron expression is 0 15 10 ? * * (quartz), it should return 25-Apr-201...
Flinn asked 26/4, 2010 at 2:51

7

Solved

I wonder how to pass an instance variable externally in Quartz? Below is pseudo code I would like to write. How can I pass externalInstance into this Job? public class SimpleJob implements Job { ...
Drice asked 8/10, 2012 at 7:23

2

Solved

This should be pretty straight forward, but I see no job being executed. I have a breakpoint on the execute() method of the task, no thread gets there ever. I'm not getting what's wrong. the Job ...
Coniology asked 13/2, 2013 at 17:10

9

Solved

I know there is a duplicate here, which probably is exactly my case, though it would deserve some better explanation, which I will try to provide here. I work with a Java web application using a S...
Dilapidate asked 12/12, 2012 at 7:56

2

I'm facing a painful problem with Quartz and misfires. My App creates allows user to create CronTrigger and SimpleTrigger Jobs. Each Job can be paused/resumed (using Scheduler.pauseJob and Schedu...
Rann asked 18/8, 2015 at 14:23

3

Hi I want to create a cron expression excluding saturday and sunday.
Andonis asked 4/2, 2012 at 19:47

4

Solved

Let's say I have a trigger configured this way: <bean id="updateInsBBTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean"> <property name="jobDetail" ref="updateInsBB...
Bandeen asked 10/12, 2010 at 12:35

3

Solved

I am a bit new to Quartz. Is there a way to update the job execution interval for an already submitted Quartz job? Does this interval get updated immediately? Do you have to start the job once agai...
Sessler asked 4/9, 2012 at 6:36

5

I'm reading the Spring 3.0 docs regarding scheduling. I'm leaning towards Spring's JobDetailBean for Quartz. However, the @Scheduled annotation has captured my eye. It appears this is another way o...
Hallmark asked 8/12, 2010 at 9:4

4

Solved

I set following properties in my quartz.properties file: org.quartz.threadPool.threadCount = 60 org.quartz.scheduler.batchTriggerAcquisitionMaxCount = 60 , however, for some reason, apparently i...
Perlis asked 5/2, 2013 at 12:35

6

I'm trying to save quartz jobs into the database. I've set up the tables, created quartz.properties files, but when I try to run the app, this exception shows up: 2012-02-01 17:36:23,708 [main] ER...
Sustentacular asked 1/2, 2012 at 10:46

4

Solved

I want a cron expression that represents 6th September 2010 6:00 am
Suggs asked 8/9, 2010 at 7:19

4

Solved

It appears to me that both mean "any of the available values". What exactly in the difference between them?
Cecilacecile asked 11/12, 2015 at 7:34

4

Solved

I'm getting this error: org.quartz.JobPersistenceException: Couldn't store job: Driver's Blob representation is of an unsupported type: oracle.sql.BLOB [See nested exception: java.sql.SQLException...
Toot asked 25/1, 2013 at 8:58

3

I am trying to understand which is the best way to have an asynchronous job fired at a scheduled rate in Kotlin, while the application is normally running it's normal tasks. Let's say I have a simp...
Sisterhood asked 24/2, 2019 at 14:21

4

I have one job that needs to be execute twice a day at different time . e.g. 10:00 and 15:30. How can i achieve this ? I am confuse because minute is different for both the time. For 11:00 and 15:...
Candescent asked 7/9, 2015 at 8:18

4

We are using quartz in spring boot application. For storing job information, I have used jdbc store. In application.properties file, I have following: spring.quartz.job-store-type=jdbc spring.quart...
Gassaway asked 28/9, 2020 at 12:4

3

I have a spring boot project that I want to use quartz with to run certain jobs at certain times. I have this class layout: abstract public class AbstractFoo { protected final FooB fooB; public...
Distinct asked 6/12, 2017 at 20:38

3

Solved

I was wondering if one can configure quartz to execute a long processing job run only in one thread at any given time. In another words, say I have quartz configured with a SimpleThreadPool of size...
Holograph asked 2/8, 2011 at 21:0

4

Solved

I have configured a spring's method invoking job previously which is working fine. Now my requirement is to have this job as persistent which will run in a clustered environment. After configuring ...
Simplify asked 5/5, 2014 at 8:55

© 2022 - 2025 — McMap. All rights reserved.