我需要一个 grails 石英示例项目

发布于 2024-12-24 02:28:02 字数 45 浏览 1 评论 0 原文

我只需要一个使用 Quartz 的示例项目或一个逐步解释所有内容的优秀教程。

I just need a sample project that uses Quartz or a good tutorial that explains everything step by step.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

や三分注定 2024-12-31 02:28:02

幸运的是,Grails Quartz 插件页面非常明确地介绍了如何在 Grails 中创建 Quartz 作业。

首先,熟悉 Quartz 文档,那么您将立即了解如何在 Grails 中设置它们

简而言之,Job 就是您要做的事情(调用数据库,发送电子邮件,抓取网页等),而触发器是当你想要这样做的时候

如果一个作业不是由触发器启动的,那么它是无用的,如果你有一个没有作业的触发器,那么“什么也不做”。

您想要执行的操作必须在 GrailsJobexecute() 方法中实现,而 static triggers 字段确定哪些触发器将启动您的工作。有多种触发器,但更有用的是<代码>CronTrigger

Fortunately, the Grails Quartz Plugin Page is very explicit about how you can create a Quartz job in Grails.

First, become familiar with the Job and Trigger difference in Quartz Documentation, then you'll understand immediately how to set these up in Grails

In short, Job is WHAT you're going to do (calling databases, sending emails, crawling web pages, etc) and Trigger is WHEN you want to do that

A job is useless if it's not launched by a trigger, and 'nothing' will be done if you have a trigger without a job.

What you want to do has to be implemented in the execute() method of the GrailsJob whereas the static triggers field determine which triggers will launch your job. There are several kinds of triggers, but the more useful is the CronTrigger

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文