当数据库表发生更改时更新前端

发布于 2024-10-28 19:56:49 字数 223 浏览 1 评论 0原文

我正在开发一个使用 JSP、Servlet 和 MySQL 作为数据库的应用程序。

前端由 DOJO 库 JavaScript 和 JSP 组成,它显示数据库表中存在的所有元素。

我们的要求之一是,每当发生更改(表中添加新条目)时,它应该立即反映在前端中。

这不是定期刷新,它可能随时发生,例如 1 小时、2 小时甚至 5 小时后)

请建议处理此要求的最佳方法是什么?

I am developing a Application using JSP , Servlets and MySQL as Database .

The FrontEnd is made of DOJO library JavaScript and JSP and it displays all the Elements Present in the Database Table .

One of our requirement is that whenever there is a change ( A New Entry that is added in the Table) , it should immediately reflect in the Front End .

This is not a Periodical refresh ,and it may happen at anytime like after 1 Hour 2 Hours or even after 5 Hours )

Please sugget what is the best approach to deal with this requirement ??

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

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

发布评论

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

评论(2

九局 2024-11-04 19:56:49

实际上你仍然需要定期检查你的数据库是否发生变化,然后你可以更新你的页面。要在不刷新用户的情况下更新它,请尝试 AJAX 和轮询。

有关更多详细信息,请访问 此处

Actually you still need to periodically check if your db changes or not, then you can update your pages. To update it without user refreshing, try AJAX and polling.

For more details pls visit here.

丢了幸福的猪 2024-11-04 19:56:49

以下是一些在 jsp 中显示 Ajax 演示的链接:

  1. ajaxprojects
  2. ajax-programming-with-jsp-and-servlets
  3. w3schools Ajax
  4. roseindia Ajax

希望这有帮助。

Here are some links that shows demo of Ajax in jsp:

  1. ajaxprojects
  2. ajax-programming-with-jsp-and-servlets
  3. w3schools Ajax
  4. roseindia Ajax

Hope this helps.

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