📄 quartz.properties
字号:
#
# Configure Main Scheduler Properties
#
org.quartz.scheduler.instanceName = PRRMScheduler
org.quartz.scheduler.instanceId = one
#
# Configure ThreadPool
#
org.quartz.threadPool.class = org.quartz.simpl.SimpleThreadPool
org.quartz.threadPool.threadCount = 5
org.quartz.threadPool.threadPriority = 4
#
# Configure JobStore
#
#org.quartz.jobStore.misfireThreshold = 5000
#org.quartz.jobStore.class = org.quartz.simpl.RAMJobStore
org.quartz.jobStore.class = org.quartz.impl.jdbcjobstore.JobStoreTX
org.quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.StdJDBCDelegate
org.quartz.jobStore.tablePrefix = QRTZ_
org.quartz.jobStore.dataSource = prrmDS
org.quartz.dataSource.prrmDS.jndiURL=java:comp/env/jdbc/prrmDS
#
# Configure JobDataMaps
#
# instruct JDBCJobStore that all values in JobDataMaps will be
# Strings, and therefore can be stored as name-value pairs, rather
# than storing more complex objects in their serialized form in the BLOB column
#org.quartz.jobStore.useProperties=true
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -