为什么没有WebSecurityConfigurerAdapter
时间: 2023-10-12 07:53:29 浏览: 88
如果您在项目中没有找到`WebSecurityConfigurerAdapter`类,可能是因为您没有添加Spring Security的相关依赖或者没有正确导入所需的包。
请确保您的项目中已经添加了Spring Security的相关依赖。对于Maven项目,您可以在pom.xml文件中添加以下依赖:
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
```
对于Gradle项目,您可以在build.gradle文件中添加以下依赖:
```groovy
implementation 'org.springframework.boot:spring-boot-starter-security'
```
添加依赖后,执行构建工具的相应命令(例如`mvn clean install`或`gradle build`)来下载依赖并刷新项目。
如果您已经添加了依赖但仍然找不到`WebSecurityConfigurerAdapter`类,可能是因为您没有正确导入所需的包。请确保您的配置类中导入了`org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter`包。
如果您仍然遇到问题,请检查项目的配置和依赖,并确保它们正确设置。如果有其他疑问,请随时提问。
阅读全文