/jee-quartz-integration

Example integration of Quartz into a JEE container

Primary LanguageJava

Documentation

How to run

  • setup a postgresql db
  • Add jdbc pool and resource for quartz named: jdbc/quartz-datasource
    • Non Transactional Connections has to be set to true
  • Add jdbc pool and resource for the app named: jdbc/app-datasource
  • create a concurrent executor with the name: concurrent/quartz-executor
    • Queue Capacity: 0
    • Longing Running to true
  • copy war into the autodeploy // or use the IDE
  • add org.quartz.scheduler.skipUpdateCheck to true to the jvm-options
  • add quartz.node.id with a unique id to each domain you start as jvm-options

Links