This example demonstrates how to run Spring Boot application with Quartz in cluster mode.
Article on dev.to
Also in this example, we autowire service that currently runs on the instance where jobs are executed.
The supervisor module has Swagger ui with REST commands. It is available at http://localhost:8080/swagger-ui/index.html You can use this commands to add jobs, view jobs statuses and delete jobs.
Execute tasks that are submitted to the cluster.
Before you start supervisor
and worker
apps you need to start MySQL database, to do that you can
use docker-compose.yml
file and execute in the project directory:
docker compose up -d
After that you need to run first supervisor
it will create necessary database(test
) and tables
for quartz.
After it starts run worker
.
After that open in your browser swagger ui http://localhost:8080/swagger-ui/index.html