1
- # ThreadPool实现的名称(Quartz附带的线程池是 "org.quartz.simpl.SimpleThreadPool")
1
+ # ThreadPool实现的名称(Quartz自带线程池是 "org.quartz.simpl.SimpleThreadPool")
2
2
org.quartz.threadPool.class =org.quartz.simpl.SimpleThreadPool
3
3
# threadCount和threadPriority将以setter的形式注入ThreadPool实例
4
4
# 可用于并发执行作业的线程数(只有1到100之间的数字是非常实用的)
5
5
org.quartz.threadPool.threadCount =5
6
6
# 线程的优先级,默认值为5
7
7
org.quartz.threadPool.threadPriority =5
8
- # 是否继承初始化线程的上下文加载器类,默认为false。
8
+ # 是否继承初始化线程的上下文加载器类,默认为false
9
9
org.quartz.threadPool.threadsInheritContextClassLoaderOfInitializingThread =true
10
- # 调度程序在被认为是"misfired"之前将"容忍"触发器到下一次触发时间的毫秒数(默认60000)
11
- org.quartz.jobStore.misfireThreshold =5000
10
+
12
11
# 默认存储在内存中,RAMJobStore快速轻便,但是当进程终止时,所有调度信息都会丢失
13
12
# org.quartz.jobStore.class = org.quartz.simpl.RAMJobStore
14
- # 持久化
13
+ # 持久化
15
14
org.quartz.jobStore.class =org.quartz.impl.jdbcjobstore.JobStoreTX
16
- # 您需要为JobStore选择一个DriverDelegate才能使用。 DriverDelegate负责执行特定数据库可能需要的任何JDBC工作。
17
- # StdJDBCDelegate是一个使用“vanilla”JDBC代码( 和SQL语句) 来执行其工作的委托,用于完全符合JDBC的驱动程序
15
+ # DriverDelegate负责执行特定数据库可能需要的任何JDBC工作,需为JobStore选择一个DriverDelegate才能使用
16
+ # StdJDBCDelegate是一个使用“vanilla”JDBC代码( 和SQL语句) 来执行其工作的委托,用于完全符合JDBC的驱动程序
18
17
org.quartz.jobStore.driverDelegateClass =org.quartz.impl.jdbcjobstore.StdJDBCDelegate
19
- # 可以将“org.quartz.jobStore.useProperties”配置参数设置为“true”(默认为false)以指示JDBCJobStore将JobDataMaps中的所有值都作为字符串,
20
- # 因此可以作为名称 - 值对存储而不是在BLOB列中以其序列化形式存储更多复杂的对象
18
+ # 调度程序在被认为是"misfired"之前将"容忍"触发器到下一次触发时间的毫秒数(默认60000)
19
+ org.quartz.jobStore.misfireThreshold =5000
20
+ # 将该配置参数设置为“true”(默认为false)用以指示JDBCJobStore将JobDataMaps中的所有值都作为字符串
21
21
org.quartz.jobStore.useProperties =true
22
- # 表前缀
22
+ # 表前缀
23
23
org.quartz.jobStore.tablePrefix =QRTZ_
24
- # 设置JobStore使用哪个DataSource
24
+ # 设置为"true"以打开群集功能;若有多个Quartz实例使用同一组数据库表,则此属性必须设置为"true"
25
+ # org.quartz.jobStore.isClustered=false
26
+ # org.quartz.jobStore.clusterCheckinInterval:10000
27
+
28
+ # 设置JobStore使用哪个DataSource
25
29
org.quartz.jobStore.dataSource =qzDS
26
30
org.quartz.dataSource.qzDS.driver =com.mysql.cj.jdbc.Driver
27
31
org.quartz.dataSource.qzDS.URL =jdbc:mysql://localhost:3306/quartz?serverTimezone=GMT%2B8
28
32
org.quartz.dataSource.qzDS.user =root
29
33
org.quartz.dataSource.qzDS.password =root
30
34
org.quartz.dataSource.qzDS.maxConnections =10
31
- # 设置为“true”以打开群集功能;如果您有多个Quartz实例使用同一组数据库表,则此属性必须设置为“true”
32
- # org.quartz.jobStore.isClustered=false
33
- # 配置集群参见: https://www.w3cschool.cn/quartz_doc/quartz_doc-3x7u2doc.html
35
+
36
+
37
+ # 配置集群参见: https://www.w3cschool.cn/quartz_doc/quartz_doc-3x7u2doc.html
0 commit comments