服务器推送jsp
有很多选项可以使用反向 AJAX 和 DWR 库来制作服务器推送应用程序。但它们都是基于 AJAX 的应用程序。我想使用 JSP 构建简单的服务器推送应用程序,它将消息推送到客户端。如果有人提供代码片段那就太好了。
There are so many option make a server push application with reverse AJAX and DWR lib. But all they are with AJAX based application. I want build simple server push application with JSP which will push the message to client. It will be great if someone give code snippet.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
HTTP 并不是为服务器端推送而设计的。如果您想要这样做,您需要使用 Javascript 或 Flash 或 Silverlight 等其他技术从客户端执行此操作。
不过,有很多框架可以“隐藏”客户端代码。例如,查看 Apache Wicket 或 Google Web Toolkit、vaadin,...以及许多其他工具。
HTTP wasn't designed for server-side push. If you want that, you'll need to do it from the client with Javascript or some other technology like Flash or Silverlight.
There are a lot of frameworks out there that "hide" the client side code though. Look at Apache Wicket for example, or Google Web Toolkit, vaadin, ... and many others.