java-tutorials/spring-quartz
Eugen Paraschiv 2efdeed00f changing parent name 2018-06-08 21:04:03 +03: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 changing parent name 2018-06-08 21:04:03 +03: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: