java-tutorials/spring-quartz
Sanjay Patel cddf858c05 BAEL-5246: pom cleanup (#4620)
* BAEL-5246: round 1 of pom cleanup - upto "jersey" project

* BAEL-5246: Initial pass for pom cleanup - upto spring-cloud

* BAEL-5246: pom cleanup upto testing-modules/junit5

* BAEL-5246: pom cleanup - upto xstream

* BAEL-5246: pom cleanup - last round (before review)
2018-07-12 09:04:54 +02:00
..
src/main use standard logback.xml (#1666) 2017-04-17 18:41:23 +02:00
.gitignore spring quartz tutorial sample code first commit 2015-09-30 23:30:45 +05:30
README.md Back-links added (#4119) 2018-05-02 09:41:08 +02:00
pom.xml BAEL-5246: pom cleanup (#4620) 2018-07-12 09:04:54 +02:00

README.md

=========================================================================

Scheduling in Spring with Quartz Example Project

This is the first example where we configure a basic scheduler.

Spring boot application, Main class

org.baeldung.springquartz.SpringQuartzApp
Configuration in application.properties

  • Default: configures scheduler using Spring convenience classes:
    using.spring.schedulerFactory=true
    
  • To configure scheduler using Quartz API:
    using.spring.schedulerFactory=false
    

Relevant Articles: