Spring integrates the implementation of quartz job and spring task
There are two main types of timed tasks commonly used in spring
1. Spring integrates quartz job
2. Tasks built in after spring 3.0
1、 Two implementation methods of timed tasks
Quartz job
1. First write the task class
2. Add spring integration quartz configuration
Spring Task
1. Write task class
2. Add task's profile
2、 Compare the advantages and disadvantages of the two
Quartz job features
1. Powerful, but slightly cumbersome configuration
2. Each time quartz executes, a new task object is created
3. An exception is thrown during the execution of a task in quartz, which does not affect the execution of the next task. When the next execution time comes, the timer will execute the task again.
Spring task features
1. Using @ scheduled annotation and a small amount of configuration, it is easy to use
2. A task uses the same task object every time it is executed
3. TimerTask once an exception is thrown during the execution of a task, the whole timer life cycle will end and the timer task will never be executed in the future.
At present, I personally use quartz job more
The above implementation method of spring integrating quartz job and spring task is all the content shared by Xiaobian. I hope it can give you a reference and support more programming tips.