当数据库表发生更改时更新前端
我正在开发一个使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实际上你仍然需要定期检查你的数据库是否发生变化,然后你可以更新你的页面。要在不刷新用户的情况下更新它,请尝试 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.
以下是一些在 jsp 中显示 Ajax 演示的链接:
希望这有帮助。
Here are some links that shows demo of Ajax in jsp:
Hope this helps.