springboot里引入jquery
时间: 2023-05-17 12:06:35 浏览: 485
boot.js——前端引用的js
在Spring Boot中引入jQuery可以通过以下步骤实现:
1. 在项目的pom.xml文件中添加以下依赖:
```
<dependency>
<groupId>org.webjars</groupId>
<artifactId>jquery</artifactId>
<version>3.5.1</version>
</dependency>
```
2. 在HTML文件中添加以下代码:
```
<script src="/webjars/jquery/3.5.1/jquery.min.js"></script>
```
这样就可以在Spring Boot项目中使用jQuery了。
阅读全文