用于 JSP 和 Servlet 的 MailScheduler
我有一个具有时间跟踪功能的网络应用程序。 时间跟踪器功能用于根据数据库中输入的日期在稍后的日期发送电子邮件。
我想询问有关如何使用 JSP 和 Servlet 实现此功能的任何想法。
如何在服务器端创建一个“监听”线程来不断检查数据库 用于时间跟踪功能?
i have a web application which has a time tracker function.
The time tracker function is used to send an email at a later date based on the inputted date in the database.
I would like to ask for any ideas on how to implement this using JSP and Servlets.
How do i create a "listening" thread in the server side that constantly checks the database
for the time tracker function?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将 Quartz 调度程序配置为每分钟左右唤醒一次并发送邮件。您可以在另一个 我的回答。
You can configure Quartz scheduler to wake-up every minute or so and send mails. You can see how to get this work with servlets in another answer of mine.