我正在尝试使用石英插件为grails(http://grails.org/plugin/quartz)启用作业持久性,但每次我尝试创建一个新作业时都无法找到该表。看起来插件没有创建表。
我在mysql中使用的数据库和我的grails版本是2.3.11。我试图镜像此博客中使用的配置(http://blog.robinpercy.com/2012/11/06/grails-clustered-quartz-configs-by-environment/)但是没有创建表。
这是我的石英配置:
jdbcProps = {
scheduler.instanceName = "quartz"
scheduler.instanceId = "AUTO"
threadPool.class = "org.quartz.simpl.SimpleThreadPool"
threadPool.threadCount = 3
threadPool.threadPriority = 5
jobStore.misfireThreshold = 60000
jobStore.class = "org.quartz.impl.jdbcjobstore.JobStoreTX"
jobStore.driverDelegateClass = "org.quartz.impl.jdbcjobstore.MSSQLDelegate"
jobStore.useProperties = false
jobStore.tablePrefix = "qrtz_"
jobStore.isClustered = true
jobStore.clusterCheckinInterval = 5000
plugin.shutdownhook.class = "org.quartz.plugins.management.ShutdownHookPlugin"
plugin.shutdownhook.cleanShutdown = true
}
environments {
development {
quartz {
autoStartup = true
jdbcStore = true
waitForJobsToCompleteOnShutdown = true
props(jdbcProps)
}
}
}
Quartz可以找到我的datasource.groovy文件中指定的数据库,但是找不到它需要的表。
dataSource {
pooled = true
driverClassName = "com.mysql.jdbc.Driver"
username = "root"
password = "root"
dbCreate = "create-drop" // one of 'create', 'create-drop','update'
url = "jdbc:mysql://localhost:3306/appDatabase?autoReconnect=true"
properties {
numTestsPerEvictionRun=3
testOnBorrow=true
testWhileIdle=true
testOnReturn=true
validationQuery="SELECT 1"
}
}
这是例外
An error occurred while scanning for the next triggers to fire.
org.quartz.JobPersistenceException: Couldn't acquire next trigger: Table 'appDatabase.qrtz_TRIGGERS' doesn't exist [See nested exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'appDatabase.qrtz_TRIGGERS' doesn't exist
我在这里遗漏了什么吗?我是否需要手动创建表格或者是否存在配置错误?
答案 0 :(得分:3)
我暂时没有使用过这个,但我怀疑它会为你创建表格。 Quartz发行版为docs/dbTables
目录中的20多个数据库提供了DDL,因此您可以将该文件用于您的数据库和版本,并在运行之前根据需要进行自定义。
<!DOCTYPE ...>
。