我需要一个 grails 石英示例项目
我只需要一个使用 Quartz 的示例项目或一个逐步解释所有内容的优秀教程。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我只需要一个使用 Quartz 的示例项目或一个逐步解释所有内容的优秀教程。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
幸运的是,Grails Quartz 插件页面非常明确地介绍了如何在 Grails 中创建 Quartz 作业。
首先,熟悉 Quartz 文档,那么您将立即了解如何在 Grails 中设置它们
简而言之,
Job
就是您要做的事情(调用数据库,发送电子邮件,抓取网页等),而触发器
是当你想要这样做的时候如果一个作业不是由触发器启动的,那么它是无用的,如果你有一个没有作业的触发器,那么“什么也不做”。
您想要执行的操作必须在
GrailsJob
的execute()
方法中实现,而static triggers
字段确定哪些触发器将启动您的工作。有多种触发器,但更有用的是<代码>CronTriggerFortunately, the Grails Quartz Plugin Page is very explicit about how you can create a Quartz job in Grails.
First, become familiar with the
Job
andTrigger
difference in Quartz Documentation, then you'll understand immediately how to set these up in GrailsIn short,
Job
is WHAT you're going to do (calling databases, sending emails, crawling web pages, etc) andTrigger
is WHEN you want to do thatA 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 theGrailsJob
whereas thestatic triggers
field determine which triggers will launch your job. There are several kinds of triggers, but the more useful is theCronTrigger