java: 无法访问javax.servlet.Filter ,找不到javax.servlet.Filter的类文件的解决办法
1、问题启动 Spring Boot 项目时,抛出该问题:双击该问题,跳转到 WebSecurityConfigurerAdapter类:2、 原因分析因为这个 WebSecurityConfigurerAdapter类内部依赖了 spring-boot-starter-web,而我们的项目又没有引入这个包。3、解决办法在 pom.xml 中引入spring-boot-starter-web:&l
·
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>
再次启动:
启动成功!
更多推荐
已为社区贡献10条内容
所有评论(0)