使用 Javascript 调用 JSP 页面的 Cron 作业
我正在使用 Java Mail API 开发电子邮件客户端。现在,为了定期检查新邮件,我想调用一个页面“Synchronize_update.jsp”,
我必须通过 JSP 来完成此操作,因为我还需要在最后执行一段 JavaScript 代码,这基本上是对 Notify_all_for_new_mail 的 AJAX 调用.jsp。
有人能给我建议一个解决方案吗?我使用的是具有命令行完全访问权限的 Linux 虚拟服务器。
I am developing an Email client using Java Mail API. Now, to regularly check for New Mails, I want to call a page "Synchronize_update.jsp"
I have to do it through a JSP as I need to also execute a piece of JavaScript Code towards the end which is basically an AJAX Call to Notify_all_for_new_mail.jsp.
Can any one suggest me a solution? I am on a Linux Virtual server with command line full access.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的调度很简单,您可以使用 java.util.Timer 和 java.util.TimerTask 类,或者使用 Quartz 调度程序如果你想实现类似cron的调度。
这是使用计时器的示例。
要在代码中模拟浏览器功能,您可以使用 HttpUnit。
我认为使用上述工具您可以实现您的功能。希望这有帮助。
You could use java.util.Timer and java.util.TimerTask classes if your scheduling is simple, or use Quartz scheduler if you wish to achieve cron like scheduling.
Here is example using Timer.
For emulating browser functionality in your code you can use HttpUnit.
I think using above tools you can achieve your functionality. Hope this helps.