1、问题

启动 Spring Boot 项目时,抛出该问题:
在这里插入图片描述
双击该问题,跳转到 WebSecurityConfigurerAdapter类:
在这里插入图片描述

2、 原因分析

因为这个 WebSecurityConfigurerAdapter类内部依赖了 spring-boot-starter-web,而我们的项目又没有引入这个包。

3、解决办法

pom.xml 中引入spring-boot-starter-web

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

再次启动:
在这里插入图片描述
启动成功!

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐