Spring Webflow 和 JQuery
我现在正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果我正确理解你的问题,只需将 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.
开始使用它的最快方法可能是在要使用它的 jsp 或 HTML 页面的脚本标记中提供指向 jQuery 的 Google 存储库的链接。
例如:
我使用以下教程开始:
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.:
I used the following tutorial to get started :
http://krams915.blogspot.com/2011/01/spring-mvc-3-and-jquery-integration.html