问题
启动SpringBoot项目时,报错:
双击该问题,跳转到WebSecurityConfigurerAdapter类
原因分析
因为这个WebSecurityConfigurerAdapter类内部依赖了spring-boot-starter-web,而我们的项目又没有引入这个包。
解决方法
pom文件中引入spring-boot-starter-web
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>