java-tutorials/spring-quartz
sachin fb0023286a BAEL-7674: Let's make sure our logging configuration has the same pattern 2018-08-21 18:22:53 -04:00
..
src/main BAEL-7674: Let's make sure our logging configuration has the same pattern 2018-08-21 18:22:53 -04: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: