Questions tagged [quartz-scheduler]

Quartz Scheduler is a Java-based open-source job scheduling service. NOTE: this tag is about the Java framework. For .NET questions please use [quartz.net] instead. For Clojure questions please use [quartzite] unless you're directly interoping with the Java library.

Quartz Scheduler is a Java-based open-source job scheduling library.

You can find out more at http://quartz-scheduler.org/.

See also

3792 questions
1
vote
2 answers

AEM 6.3 : Creating Scheduler using OSGi R6 annotations

I have written a scheduler using OSGi R6 annotations but it doesn't seem to run : package com.aem.sites.interfaces; import org.osgi.service.metatype.annotations.AttributeDefinition; import org.osgi.service.metatype.annotations.AttributeType; import…
user972418
  • 817
  • 3
  • 25
  • 58
1
vote
1 answer

Quartz Scheduler Triggers not respecting priority

Basically, I am using an implementation of Quartz Scheduler and I want multiple jobs to run at the same time but some should run before the others. For this, I have found the parameter "priority" for a Trigger. SO let's say I have 4 jobs, each with…
Mocktheduck
  • 1,333
  • 1
  • 22
  • 43
1
vote
2 answers

Quartz, setting up postgres schema, what should JOB_DATA be?

I'm using liquibase to setup the database tables for quartz as per Bert R recipe. What is the correct type for the JOB_DATA columns for postgres? The raw error is Caused by: org.quartz.JobPersistenceException: Couldn't retrieve trigger: 2 at…
Interlated
  • 5,108
  • 6
  • 48
  • 79
1
vote
0 answers

Quartz datasource and existing connection pool with a one database

This question might look too broad, but I could not find a solution or any idea from existing sources in the web. There might not be exact answers for this, what I need is your suggestions on how to get this implemented. My application has its own…
vigamage
  • 1,975
  • 7
  • 48
  • 74
1
vote
1 answer

Spring boot with CalendarIntervalTrigger program

I am trying to integrate spring boot with CalendarIntervalTrigger. I am able to find programs based on Simple Jobs and Cron Jobs but not based on Calendar based. Can anyone provide me some…
TomJava
  • 499
  • 1
  • 8
  • 24
1
vote
1 answer

Update Quartz.net cron trigger not to execute on a particular date/dates for daily trigger.

I have cron trigger which fire daily at particular time of the day, I have to update that trigger so that i don't want that trigger to be executes on particular date. eg. I have trigger which execute daily on each day, I have to pass a date…
Roshan
  • 873
  • 12
  • 33
1
vote
0 answers

After restarting weblogic scheduled jobs are not triggering

After restart of weblogic server ,jobs which were scheduled are not triggering scheduled jobs. Below is the code. 1.I am using CronTrigger 2.I am using jobdetail CronTrigger trigger = new CronTrigger();    …
Pradeep L
  • 11
  • 1
1
vote
1 answer

Can't initialize StdSchedulerFactory in Quartz dot net

I am getting below error while initializing StdSchedulerFactory in Quartz.net The type initializer for 'Quartz.Impl.StdSchedulerFactory' threw an exception {"Could not load file or assembly 'Common.Logging, Version=3.3.1.0, Culture=neutral,…
Roshan
  • 873
  • 12
  • 33
1
vote
2 answers

Scheduling multiple jobs with their own Cron expressions with Springboot and Quartz

I have successfully developed a application with SpringBoot and Quartz which executes only a single job using a Cron expression defined for that particular job. My implementation is largely based on the information found in following…
vigamage
  • 1,975
  • 7
  • 48
  • 74
1
vote
2 answers

Spring framework and Quartz scheduler

I have a Spring MVC web application and I want to make use of Quartz scheduler. After reading the docs on Quartz and also on how it integrates with Spring, I am left wondering. Will Quartz handler run as a separate process independent of tomcat or…
user7851085
1
vote
0 answers

Quartz FileScanJob - File Not Found

Here is my quartz.properties: org.quartz.plugin.jobInitializer.class = org.quartz.plugins.xml.XMLSchedulingDataProcessorPlugin org.quartz.plugin.jobInitializer.fileNames = jobs.xml org.quartz.plugin.jobInitializer.failOnFileNotFound =…
Ed Syrett
  • 45
  • 6
1
vote
1 answer

How to get class reference by String name?

I am attempting to make the following method call dynamic: JobDetail job = newJob(RunMeJob.class) .withIdentity("myJob", "group1") .build(); By doing the following: private void scheduleJob(final SchedulerJob…
crmepham
  • 4,676
  • 19
  • 80
  • 155
1
vote
1 answer

Quartz scheduler shutdown(true) wait for all threads started from running Jobs to stop?

If I have a job and from that job I create some threads, what happens when I call scheduler.shutdown(true)? Will the scheduler wait for all of my threads to finish or not?
telebog
  • 1,706
  • 5
  • 25
  • 34
1
vote
1 answer

Quartz.net Run 1 instance of a job with different JobKey and JobData

I have a hopefully a simple question to which i can't find the answer. If i schedule a Job of type LongRunningAndHeavyJob on demand (StartNow()) i dont know how long this job will run but it can be long (from 10 minutes to 60+ minutes) and is very…
Jordy van Eijk
  • 2,718
  • 2
  • 19
  • 37
1
vote
1 answer

how to configure Quartz job in jHipster? [Issue while configuring Quartz job in jHipster]

I've configured quartz job in jHipster server and it is working fine for System.out.println statement but when I try to use persistence related work It's giving me an exception. I've @Autowire JdbcTemplate jdbcTemplate; but it's still null and the…
NewCoder
  • 81
  • 2
  • 11
1 2 3
99
100