I have created beans of quartz_cron_triggers, qrtz_triggers,qrtz_job_details from Main Data Store-> Generate Model from Databse.
I have done some implementations on Quartz in my project.
I am unable to execute the program , program execution gets stuck after this line :
2024-04-28 12:59:16.720 INFO 17916 — [ main] i.j.d.i.JmixBaseEntityManagerFactoryBean : Using persistence.xml at com/company/api_test/persistence.xml for ‘main’ store
2024-04-28 12:59:16.773 INFO 17916 — [ main] o.s.o.j.p.PersistenceUnitReader : persistence.xml should be located inside META-INF directory; cannot determine persistence unit root URL for class path resource [com/company/api_test/persistence.xml]
2024-04-28 12:59:17.461 INFO 17916 — [ main] i.j.d.impl.JmixEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit ‘main’
2024-04-28 12:59:17.942 INFO 17916 — [ main] PessimisticLockScheduleAutoConfiguration : Schedule pessimistic lock expiring using default configuration with CRON expression ‘0 * * * * ?’
2024-04-28 12:59:17.955 INFO 17916 — [ main] .e.EmailSendingScheduleAutoConfiguration : Schedule Email Sending using default configuration with CRON expression ‘0 * * * * ?’
2024-04-28 12:59:18.014 INFO 17916 — [ main] org.quartz.impl.StdSchedulerFactory : Using default implementation for ThreadExecutor
2024-04-28 12:59:18.025 INFO 17916 — [ main] org.quartz.core.SchedulerSignalerImpl : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
2024-04-28 12:59:18.025 INFO 17916 — [ main] org.quartz.core.QuartzScheduler : Quartz Scheduler v.2.3.2 created.
2024-04-28 12:59:18.044 INFO 17916 — [ main] o.s.s.quartz.LocalDataSourceJobStore : Using db table-based data access locking (synchronization).
2024-04-28 12:59:18.046 INFO 17916 — [ main] o.s.s.quartz.LocalDataSourceJobStore : JobStoreCMT initialized.
2024-04-28 12:59:18.047 INFO 17916 — [ main] org.quartz.core.QuartzScheduler : Scheduler meta-data: Quartz Scheduler (v2.3.2) ‘quartzScheduler’ with instanceId ‘NON_CLUSTERED’
Scheduler class: ‘org.quartz.core.QuartzScheduler’ - running locally.
NOT STARTED.
Currently in standby mode.
Number of jobs executed: 0
Using thread pool ‘org.quartz.simpl.SimpleThreadPool’ - with 10 threads.
Using job-store ‘org.springframework.scheduling.quartz.LocalDataSourceJobStore’ - which supports persistence. and is not clustered.
2024-04-28 12:59:18.047 INFO 17916 — [ main] org.quartz.impl.StdSchedulerFactory : Quartz scheduler ‘quartzScheduler’ initialized from an externally provided properties instance.
2024-04-28 12:59:18.047 INFO 17916 — [ main] org.quartz.impl.StdSchedulerFactory : Quartz scheduler version: 2.3.2
2024-04-28 12:59:18.047 INFO 17916 — [ main] org.quartz.core.QuartzScheduler : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@64ae891e
2024-04-28 12:59:18.228 INFO 17916 — [ main] eclipselink.logging.all : EclipseLink, version: Eclipse Persistence Services - 2.7.9.6-jmix
It gets stuck after this point only.
Can you please help what can I do so that I can execute my program ?