Spring Webflow 和 JQuery

发布于 2024-09-14 12:00:12 字数 112 浏览 7 评论 0原文

我现在正在使用 Spring webflow 从事 Spring 项目。 JavaScript 库 我想使用 JQuery。 如何将JQuery项目集成到Spring和Spring webflow中? 提前致谢

I am now working in a Spring project using the Spring webflow.
The JavaScript library I would like to use JQuery.
How to integrate JQuery project in Spring and Spring webflow?
Thanks in advance

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

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

发布评论

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

评论(2

我喜欢麦丽素 2024-09-21 12:00:12

如果我正确理解你的问题,只需将 JQuery 库复制到你的 war 目录中即可。这将使该文件可以从您的网站访问(即您将从 Java 应用程序服务器提供该文件)。然后您可以从网页上引用它。

If I understand your question correctly, it is simply a matter of copying the JQuery lib into your war directory. That will make the file accessible from your Website (i.e. you are going to server it from your Java app server). You can then refer to it from your Web pages.

独木成林 2024-09-21 12:00:12

开始使用它的最快方法可能是在要使用它的 jsp 或 HTML 页面的脚本标记中提供指向 jQuery 的 Google 存储库的链接。

例如:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>

我使用以下教程开始:

Probably, the quickest way to start using it is to provide a link to the Google repository for jQuery in a script tag in the jsp or HTML page you want to use it.

E.g.:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>

I used the following tutorial to get started :

http://krams915.blogspot.com/2011/01/spring-mvc-3-and-jquery-integration.html

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