石英调度问题
在我的网络应用程序中,我必须从数据库中检索要发送提醒的日期,并在这些日期发送短信和电子邮件提醒。谁能告诉我如何做到这一点?我必须使用石英调度程序。但是我是第一次使用石英调度程序。
In my web app i have to retreive the dates on which reminders are to be sent from a database and send Sms and email reminders on those dates.Can anyone tell me how to do this?I have to use quartz scheduler for the same.However I am using quartz scheduler for the first time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用一组Cron 类型 Quartz 触发器。
EG:制作一个每日提醒,选择某一天的所有提醒(使用它们创建一个视图)。然后使用每小时一次的提醒来处理当天的提醒 - 这将帮助您在 24 小时内分配工作量。您可以进一步达到您想要的事件粒度(季度、分钟)。
Use a set of Cron type Quartz triggers.
EG: Make a daily one that selects all the reminders for a given day (create a view with them). Then use a hourly one to process the reminders for that day - this will help you distribute the workload in 24hours. You can go further on up to your desired granularity for events (quarters, minutes).
以下是有关如何使用 Quartz 的教程:http://www.quartz-scheduler。 org/docs/tutorial/index.html
Here's a tutorial on how to use Quartz: http://www.quartz-scheduler.org/docs/tutorial/index.html