🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
webjars 是以 jar 包的方式引入静态资源,到网站 https://www.webjars.org/ 上可以找到 jQuery、Bootstrap 等常用的前端框架的 webjars 资源。 <br/> 下面以引入 jQuery 的 webjars 为例,步骤如下: **1. 访问网站 https://www.webjars.org/ 找到jQuery的webjars资源** **2. `pom.xml`引入webjars** ```xml <dependency> <groupId>org.webjars</groupId> <artifactId>jquery</artifactId> <version>3.5.0</version> </dependency> ``` **3. 页面引入jquery** ![](https://img.kancloud.cn/63/b6/63b61848833e62b6258fc10d62819667_1277x297.jpg) (1)对于 Thymeleaf 模板如下引入。 ```html <script type="text/javascript" th:src="${#httpServletRequest.getContextPath()}+'/webjars/jquery/3.5.0/jquery.min.js'"></script> ``` (2)对于 Freemarker 模板如下引入。 ```html <script type="text/javascript" src="/webjars/jquery/3.5.0/jquery.min.js"></script> ```