43 lines
1.7 KiB
Properties
43 lines
1.7 KiB
Properties
|
|
#
|
||
|
|
# Copyright (c) 2023 codvision.com All Rights Reserved.
|
||
|
|
#
|
||
|
|
|
||
|
|
# ???
|
||
|
|
org.quartz.scheduler.instanceName=MyScheduler
|
||
|
|
org.quartz.scheduler.skipUpdateCheck=true
|
||
|
|
# ThreadPool??
|
||
|
|
org.quartz.threadPool.class=org.quartz.simpl.SimpleThreadPool
|
||
|
|
#???25?????????????26????????
|
||
|
|
org.quartz.threadPool.threadCount=25
|
||
|
|
org.quartz.threadPool.threadPriority=5
|
||
|
|
# JobStoreTx??
|
||
|
|
#??????????????? ?? ?????????? = ????,???? ?? 60s?? ???????????
|
||
|
|
#????????????????
|
||
|
|
org.quartz.jobStore.misfireThreshold=6000
|
||
|
|
|
||
|
|
#??????JobStoreTX???????
|
||
|
|
# SpringBoot 2.5.6???????org.quartz.jobStore.class=org.quartz.impl.jdbcjobstore.JobStoreTX?2.5.6???SpringBoot??????????org.springframework.scheduling.quartz.LocalDataSourceJobStore
|
||
|
|
org.quartz.jobStore.class=org.springframework.scheduling.quartz.LocalDataSourceJobStore
|
||
|
|
org.quartz.jobStore.driverDelegateClass=org.quartz.impl.jdbcjobstore.PostgreSQLDelegate
|
||
|
|
#??JDBCJobStore?JobDataMaps???????????????????????key-value????????BLOB????????????????
|
||
|
|
org.quartz.jobStore.useProperties=false
|
||
|
|
|
||
|
|
|
||
|
|
#????quartz??????
|
||
|
|
org.quartz.jobStore.tablePrefix=qrtz_
|
||
|
|
#??????????????? ???????????
|
||
|
|
org.quartz.jobStore.isClustered=false
|
||
|
|
|
||
|
|
# ???????????QuartzConfig?????dynamic-datasource??SpringBoot???????
|
||
|
|
|
||
|
|
# org.quartz.jobStore.dataSource=myDS
|
||
|
|
# ?????(Quartz???c3p0???)
|
||
|
|
#org.quartz.dataSource.myDS.provider=hikaricp
|
||
|
|
#org.quartz.dataSource.myDS.driver=org.postgresql.Driver
|
||
|
|
#org.quartz.dataSource.myDS.URL=jdbc:postgresql://127.0.0.1:5432/boot?useUnicode=true&characterEncoding=utf8&autoReconnect=true&stringtype=unspecified
|
||
|
|
#org.quartz.dataSource.myDS.user=postgres
|
||
|
|
##org.quartz.dataSource.myDS.password=Codvision@2022
|
||
|
|
#org.quartz.dataSource.myDS.password=Codvision@2020
|
||
|
|
# ?????
|
||
|
|
#org.quartz.dataSource.myDS.maxConnections=50
|