You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
2.2 KiB
Properties
59 lines
2.2 KiB
Properties
# Default Properties file for use by StdSchedulerFactory
|
|
# to create a Quartz Scheduler Instance, if a different
|
|
# properties file is not explicitly specified.
|
|
#
|
|
|
|
org.quartz.scheduler.rmi.export=false
|
|
org.quartz.scheduler.rmi.proxy=false
|
|
org.quartz.scheduler.wrapJobExecutionInUserTransaction=false
|
|
|
|
|
|
#============================================================================
|
|
# Configure Main Scheduler Properties
|
|
#============================================================================
|
|
|
|
org.quartz.scheduler.instanceName=MyClusteredScheduler
|
|
org.quartz.scheduler.instanceId=AUTO
|
|
|
|
#============================================================================
|
|
# Configure ThreadPool
|
|
#============================================================================
|
|
|
|
org.quartz.threadPool.class=org.quartz.simpl.SimpleThreadPool
|
|
org.quartz.threadPool.threadCount=100
|
|
org.quartz.threadPool.threadPriority=5
|
|
|
|
org.quartz.threadPool.threadsInheritContextClassLoaderOfInitializingThread=true
|
|
|
|
#============================================================================
|
|
# Configure JobStore
|
|
#============================================================================
|
|
|
|
org.quartz.jobStore.misfireThreshold=60000
|
|
|
|
#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.oracle.OracleDelegate
|
|
org.quartz.jobStore.driverDelegateClass=org.quartz.impl.jdbcjobstore.MSSQLDelegate
|
|
org.quartz.jobStore.useProperties=false
|
|
org.quartz.jobStore.dataSource=myDS
|
|
org.quartz.jobStore.tablePrefix=QRTZ_
|
|
|
|
org.quartz.jobStore.isClustered=true
|
|
org.quartz.jobStore.clusterCheckinInterval=20000
|
|
|
|
|
|
#============================================================================
|
|
# Configure Datasources
|
|
#============================================================================
|
|
|
|
org.quartz.dataSource.myDS.driver = com.microsoft.sqlserver.jdbc.SQLServerDriver
|
|
org.quartz.dataSource.myDS.URL = jdbc:sqlserver://127.0.0.1:1433;DatabaseName=E9test
|
|
org.quartz.dataSource.myDS.user = sa
|
|
org.quartz.dataSource.myDS.password = zxc123%#
|
|
org.quartz.dataSource.myDS.maxConnections = 5
|
|
org.quartz.dataSource.myDS.validationQuery=select 0 from int_cas_setting
|
|
|
|
|
|
|