java: 无法访问org.springframework.web.WebApplicationInitializer...

springboot项目搭建时,运行报错:

java: 无法访问org.springframework.web.WebApplicationInitializer   找不到org.springframework.web.WebApplicationInitializer的类文件


这个错误,需要在pom.xml中添加依赖

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


qrcode