Questions tagged [quartz]
512 questions
3
votes
2 answers
Convert UIKit coordinates to Quartz/CoreImage (Swift)
Is there a way of converting UIKit coordinates (0,0 top left) to Quartz/CoreImage (0,0 bottom left)? Can't find anything swift related like this on here.

Adam Allard
- 403
- 1
- 5
- 11
3
votes
1 answer
Is SchedulerFactory able to create tables for quartz at start up?
I am trying to run integration test with spring boot and get the following error:
Caused by: org.springframework.context.ApplicationContextException:
Failed to start bean 'SchedulerFactory'; nested exception is…

Cherry
- 31,309
- 66
- 224
- 364
3
votes
1 answer
Database initialisation before bean creation
I am creating a timer application that uses Quartz, also am using spring to initialise my DB from schema.sql file. When application starts I want to DB be initialised before my Scheduler bean is created.
@Bean
public Scheduler scheduler() throws…

mirzak
- 1,043
- 4
- 15
- 30
2
votes
1 answer
Fired Trigger doesn't add record in to QRTZ_FIRED_TRIGGERS in Quartz.NET
From my understanding, all triggers in QRTZ_SIMPLE_TRIGGERS will be added to QRTZ_FIRED_TRIGGERS after it has been fired. However, I found there still nothing inside QRTZ_FIRED_TRIGGERS even those triggers in QRTZ_SIMPLE_TRIGGERS existing and being…

mannok
- 1,712
- 1
- 20
- 30
2
votes
1 answer
How to schedule the Quartz cron jobs on spring boot app startup?
I am integrating Quartz with Spring boot and postgres.
I have created all the required tables for quartz.
Issue : The application starts but the Job is not getting executed as per the cron.
I want that the jobs should be automatically scheduled on…

smith
- 63
- 1
- 8
2
votes
1 answer
Using pyobjc-framework-Quartz in Python 3
I've installed the library 'pyobjc-framework-Quartz'
pip install pyobjc-framework-Quartz
And in Python2, the following lines work perfectly:
provider = Quartz.CGDataProviderCreateWithFilename(input_file_path)
pdf =…

Ryan Loggerythm
- 2,877
- 3
- 31
- 39
2
votes
2 answers
Spring boot quartz schema other than public doesn't work
I am not able to use other schema (than public) for quartz tables. This is my quartz…

UnguruBulan
- 890
- 4
- 12
- 24
2
votes
1 answer
Triggers automatically went to error state in quartz using spring boot
I am using Quartz for schedule the job.
At the time of execution sometimes i face some strange issue.
first i just explain my use case,
we need a job which will trigger at scheduled time and during scheduling we need to reschedule the same job again…

DILIP DHANKECHA
- 153
- 1
- 14
2
votes
2 answers
Quartz scheduler execute an Runnable
Can a Quartz Scheduler execute a Runnable?
For example, I have the following code being running by a spring TaskScheduler:
[...]
@Autowired
@Qualifier(IntegrationConfiguration.TASK_SCHEDULER_INTEGRATION_NAME)
private TaskScheduler…

Possenti
- 121
- 13
2
votes
1 answer
Get Next Execution Date from given date with Quartz Cron Expression
I am trying to get Next Execution Date based on a Start Date and a Cron Expression using Quartz Cron Expression utility in Java. (org.quartz.CronExpression)
Following is my code to get next execution date
CronExpression exp = new…

Hushen Savani
- 346
- 6
- 18
2
votes
1 answer
Stopping Quartz job created using MethodInvokingJobDetailFactoryBean
i create a job running a Spring bean class with this code
MethodInvokingJobDetailFactoryBeanjobDetail = new MethodInvokingJobDetailFactoryBean();
Class> businessClass = Class.forName(task.getBusinessClassType());
…

Andreanta
- 175
- 1
- 8
2
votes
1 answer
Running simple quartz example in Net Core console app
I'm trying to run simple Quartz 3.x example in .NET Core console app. I have this code (taken from here):
public static async Task Main(string[] args)
{
// construct a scheduler factory
NameValueCollection props = new NameValueCollection
…

Pegaz
- 367
- 2
- 12
2
votes
1 answer
Are Quartz jobs running in the same JVM in their own threads?
Quartz scheduler is used to schedule timed java jobs at my workplace. The scheduler itself is deployed as an application to a Weblogic servers (a cluster of machines). This scheduler can schedule jobs which implement the Job interface and override…

Balu
- 522
- 6
- 16
2
votes
1 answer
Quartz Jobs do not fire intermittently
Environment:
Application server: WebSphere 8.5
OS : Solaris 11
Quartz version: 2.2.1
None clustred environment.
Problem and findings so far:
When two concurrent jobs are scheduled to be fired, only one job fire automatically. However, this is…

Kambiz
- 99
- 1
- 10
2
votes
1 answer
java.lang.ClassNotFoundException: org.quartz.jobs.FileScanListener
Recenlty upgarded the quartz scheduler jar from version 2.1.6 to 2.3.2 . Having the quartz.properties set to old configuration having called the plugin XMLSchedulingDataProcessorPlugin in my quartz.properties i have started receiving classNotFound…

Sumesh
- 21
- 2