问题描述:
1. 当springboot项目启动时,报错Web application could not be started as there was no org.springframework.boot.web.servlet.server
可能原因:
1. Springboot的主启动类是自己写的,后面改了一下类名,但是main方法中的这行代码中类名没改过来:SpringApplication.run(本主启动类名.class, args)
2. 启动类不在 com.xx.xxx文件夹下,而在java文件夹下,如下错误案例:
3. 在maven/gradle中没有引入spring-boot-starter-web 的jar包。