在springboot中使用拦截器需要什么依赖,把这些依赖给我
时间: 2024-05-06 13:16:37 浏览: 148
在使用Spring Boot中使用拦截器需要引入以下依赖:
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
```
这个依赖包含了Spring MVC框架和其他一些web相关的依赖,其中就包括了拦截器所需要的依赖。
阅读全文