ramquartz.properties
来自「Java的框架」· PROPERTIES 代码 · 共 39 行
PROPERTIES
39 行
#
# Configure Main Scheduler Properties
#
org.quartz.scheduler.instanceName = RAMScheduler
org.quartz.scheduler.instanceId = ramSched
#
# 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 + =
减小字号Ctrl + -
显示快捷键?