没有使用Grails 2.3.11为石英插件创建表

时间:2014-11-03 10:25:39

标签: grails quartz-scheduler

我正在尝试使用石英插件为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

我在这里遗漏了什么吗?我是否需要手动创建表格或者是否存在配置错误?

1 个答案:

答案 0 :(得分:3)

我暂时没有使用过这个,但我怀疑它会为你创建表格。 Quartz发行版为docs/dbTables目录中的20多个数据库提供了DDL,因此您可以将该文件用于您的数据库和版本,并在运行之前根据需要进行自定义。

几年前,我做了一次会议讨论,其中包括集群Quartz,并包含一种使用Hibernate cfg.xml和hbm.xml文件创建表的自动方式。您可以download the sample app并使用相同的方法 - 它仍然适用于Hibernate 3,并且应该使用Hibernate 4,但可能需要更新xml中的<!DOCTYPE ...>