Skip to content

Commit caee487

Browse files
authored
Update readme.md
1 parent b82199d commit caee487

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

quartz-scheduler/readme.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Working with Quartz Scheduler in Spring Boot
2+
3+
Quartz Scheduler is an open-source job scheduling library that allows developers to schedule jobs to run at a certain time or based on specific events. This library eliminates the limitations in the Spring scheduler.
4+
5+
### Quartz allows developers to:
6+
7+
- Schedule jobs to run at a specific time, or repeat at intervals - Store jobs and their triggers in a database, allowing scheduled jobs to persist between application restarts.
8+
- Run in a clustered environment, allowing jobs to be distributed across a cluster of servers for load balancing or redundancy.
9+
- Allows transaction management to ensure the jobs are only executed after transactions are successfully committed.
10+
11+
In this article, we will cover different aspects of the Quartz Scheduler and how it integrates with the Spring Boot application.
12+
13+
### [Part-1: Working with Quartz Scheduler in Spring Boot](https://stacktips.com/articles/working-with-quartz-scheduler-in-spring-boot)
14+
### [Part-2: Dynamic Scheduling in Quartz with Spring Boot Actuators](https://stacktips.com/articles/dynamic-scheduling-in-quartz-with-spring-boot-actuators)
15+
16+
17+
### Related topics:
18+
19+
* [#spring-boot](https://stacktips.com/topics/spring-boot)
20+
* [#android](https://stacktips.com/topics/android)
21+
* [#java](https://stacktips.com/topics/java)
22+
* [#python](https://stacktips.com/topics/python)
23+
* [#spring](https://stacktips.com/topics/spring)
24+
* [#design-pattern](https://stacktips.com/topics/design-pattern)
25+
* [#git](https://stacktips.com/topics/git)
26+
* [#maven](https://stacktips.com/topics/maven)

0 commit comments

Comments
 (0)