fei.wang
2024-03-21 ab64b09ce3020b376af1e6ee0326ea71330d34ad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# the job scheduler name
org.quartz.scheduler.instanceName=MyScheduler
 
# auto set the instance id
org.quartz.scheduler.instanceId=AUTO
 
# the job thread in thread pool, which means the max threads can run in the same time
org.quartz.threadPool.threadCount=1
 
# the thread's priority
org.quartz.threadPool.threadPriority = 5
 
# the job data storage is memory but not database
org.quartz.jobStore.class = org.quartz.simpl.RAMJobStore
 
mybatis-plus.global-config.db-config.id-type=auto
 
# the max delay for the task execute speed time, set 2 minutes
#org.quartz.jobStore.misfireThreshold = 120000
 
# auto create the parent thread
#org.quartz.threadPool.threadsInheritContextClassLoaderOfInitializingThread=true