我的应用程序中正在运行以下Quartz作业:

class ScraperJob {
    def scraperService

    static triggers = {
        cron name: 'scraperTrigger', cronExpression: "0 0 * * * ?"  // run every minute
    }

    def execute(){
        try {
            scraperService.storing()
            log.info "${new Date()} - Scraping went smoothly."
        }
        catch(IOException) { // Connexion problem
            log.error "${new Date()} - Method: parsing >> Connexion down or interrupted while parsing !"
        }
        catch(SAXException) { // Any SAXParser exception
            log.error "${new Date()} - Method: parsing >> Parser error."
        }
        finally { // if not closed, the application crashes when the connexion fails
            scraperService.slurper.finalize()
            scraperService.parser.finalize()
        }
  }
}

我想知道是否可以从triggers文件设置Config.groovy属性。如果是,您能解释一下吗?

最佳答案

我不知道这是否会真正起作用,因为我不确定何时配置 quartz 作业,但从理论上讲它似乎会起作用。如果您有一份以上的工作,您可能会看到如何也可以使其更具动态性。

配置槽

quartz.yourCronJobName="0 0 * * * ?"

BootStrap.groovy
import org.codehaus.groovy.grails.commons.ConfigurationHolder as ConfigHolder
...
def cronExpression = ConfigHolder.config.yourCronJobName
ScraperJob.triggers.cronExpression = cronExpression

祝好运。让我知道是否有帮助。

10-06 10:04