使用 DWR 和 Spring MVC 渲染 JSP 自定义标签
我有一个基于 Spring MVC 的 Web 应用程序。有许多自定义标签是为了制作无脚本代码而编写的。所有这些标记都是在调用封闭的 jsp 页面时呈现的。
现在我有一个要求,页面的一部分要异步更新。我一直使用DWR来处理异步请求。我想重用一些自定义标签并使用 DWR 渲染它们。
任何人都可以验证这是否是正确的方法?
如果方法是正确的,谁能告诉我我们如何才能实现同样的目标?
谢谢,阿米特·帕特尔
I have a Spring MVC based web application. There are many custom tags written to make scriptless code. All these tags are rendered when enclosing jsp pages are called.
Now I have a requirement where a portion of a page is to be updated asynchronously. I have been using DWR for asynchronous requests. I want to reuse some of the custom tags and render them using DWR.
Can anyone please validate if this is the right approach?
If the approach is right, can anyone please tell me how can we achieve the same?
Thanks, Amit Patel
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是我实施的步骤。
如果有更好的方法来实现这一目标。
谢谢。
Here are the steps how I implemented.
I would appreciate if there a better way of achieving this.
Thanks.