springboot整合jquery和bootstrap框架過程圖解
更新時間:2019年12月11日 11:25:17 作者:紅塵年少
這篇文章主要介紹了springboot整合jquery和bootstrap框架過程圖解,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下
這篇文章主要介紹了springboot整合jquery和bootstrap框架過程圖解,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下
<dependency> <groupId>org.webjars</groupId> <artifactId>jquery</artifactId> <version>3.4.1</version> </dependency> <dependency> <groupId>org.webjars</groupId> <artifactId>bootstrap</artifactId> <version>3.3.7</version> </dependency> <!-- https://mvnrepository.com/artifact/org.webjars/webjars-locator --> <dependency> <groupId>org.webjars</groupId> <artifactId>webjars-locator</artifactId> <version>0.32</version> </dependency>
<link rel="stylesheet" href="webjars/bootstrap/css/bootstrap.css" rel="external nofollow" > <script src="webjars/jquery/jquery.js"></script> <script src="webjars/bootstrap/js/bootstrap.js"></script>
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。