DWR 和 Jquery 融入 Spring MVC 2.5

发布于 2024-08-30 09:12:09 字数 235 浏览 10 评论 0原文

从我的浅薄阅读来看,Spring MVC不直接支持jquery。它确实可以与 DWR 框架集成。

根据我对DWR的理解,它是一个ajax框架,允许您从javascript调用javas方法。

我可以在我的应用程序中同时使用两者吗? Jquery 处理大部分 javascript 代码和客户端交互,DWR 进行 ajax 调用?

我倾向于学习 jquery,但在 spring 2.5 中没有开箱即用的支持。

From my shallow reading, Spring MVC does not support jquery directly. It does enable integration with DWR framework.

From my understanding of DWR, it is an ajax framework that allows you to call javas methods from javascript.

Can I use both in my application? With Jquery handling most of the javascript code and client side interaction and DWR making the ajax calls?

I am leaning towards learning jquery but there is no out of the box support for it in spring 2.5.

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

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

发布评论

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

评论(2

吃不饱 2024-09-06 09:12:09

是的。通过 Spring,您可以使用任何类型的视图技术。它的设计使您的视图与服务端代码解耦。而且你应该使用 spring 3.0。如果您使用内置 Ajax 支持的 Jquery,则实际上不需要使用 DWR。您可以只使用处理特定 URI 模板的 Spring 控制器方法。并让 jquery 点击这些 url 来进行 ajax 调用。

Yes. With spring you can use any type of view technology. It is designed so that your view is decoupled from the service side code. And also you should use spring 3.0. And if you are using Jquery that has Ajax support built-in you don't really need to use DWR. You can just have spring controller methods that handle specific URI templates. And have jquery hit those urls to make the ajax calls.

神回复 2024-09-06 09:12:09

回答有点晚了,但我找到了一个非常好的博客来解决我关于 Spring MVC 的大部分问题。

此链接提供了一个很好的教程如何集成它们。

请注意,我必须使用 DWR 版本 3.0.rc2,因为最新稳定版本 (2.0.8) 的 utils.js 中的上传控件(输入类型=文件)存在问题。

候选版本(rc)最终对我的项目来说更加稳定。

A bit late answer but I found a very good blog for most of my questions about Spring MVC.

This link provides a good tutorial how to integrates them.

Note that I had to use the DWR version 3.0.rc2 because there was problems with the upload control (input type=file) in the utils.js with the last stable version (2.0.8).

The release candidate (rc) was more stable for my project finally.

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