Quartz scheduler 石英弹簧

Quartz scheduler 石英弹簧,quartz-scheduler,Quartz Scheduler,我正在尝试使用postgreSQL将quartz计划的作业存储在数据库中 数据库名为“testdb”,模式为“testschema”。我有以下石英特性。我有一个以下quartz.properties,但我收到了错误消息“org.postgresql.util.psqleexception:error:relation“quartz\u触发器”不存在 有谁能告诉我出了什么问题吗?首先,您必须运行在数据库中创建quartz表的安装脚本 这些文件在完整的quartz jar文件(/docs/dbTab

我正在尝试使用postgreSQL将quartz计划的作业存储在数据库中

数据库名为“testdb”,模式为“testschema”。我有以下石英特性。我有一个以下quartz.properties,但我收到了错误消息“org.postgresql.util.psqleexception:error:relation“quartz\u触发器”不存在


有谁能告诉我出了什么问题吗?

首先,您必须运行在数据库中创建quartz表的安装脚本

这些文件在完整的quartz jar文件(/docs/dbTables)中提供

以下是文件:

M

org.quartz.threadPool.class = org.quartz.simpl.SimpleThreadPool
org.quartz.threadPool.threadCount = 10
org.quartz.threadPool.threadPriority = 5
org.quartz.threadPool.threadsInheritContextClassLoaderOfInitializingThread = true

org.quartz.jobStore.class = org.quartz.impl.jdbcjobstore.JobStoreTX
org.quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.StdJDBCDelegate
org.quartz.jobStore.dataSource = myDS
org.quartz.jobStore.tablePrefix = quartz_

org.quartz.dataSource.myDS.driver = org.postgresql.Driver
org.quartz.dataSource.myDS.URL = jdbc:postgresql://localhost:5432/postgres
org.quartz.dataSource.myDS.user = postgres
org.quartz.dataSource.myDS.password = welcome123
org.quartz.dataSource.myDS.maxConnections  10