SpringBoot启动Unable to start ServletWebServerApplicationContext due to missing ServletWebServerFactor

SpringBoot启动Unable to start ServletWebServerApplicationContext due to missing ServletWebServerFactor异常原因总结

废话少说,上干货

  • 原因一:是否引用 SpringBoot 启动依赖
        
            org.springframework.boot
            spring-boot-starter-web
        
  • 原因二:启动类 SpringApplication.run() 后面跟这的需要是类名
    SpringBoot启动Unable to start ServletWebServerApplicationContext due to missing ServletWebServerFactor_第1张图片
  • 原因三:出现jar包冲突。springboot 启动内嵌的tomcat,所以可能出现内嵌服务器问题,进去maven仓库,删除他的jar。

全部删除,重新下载 jar,重启之后竟然问题解决了
.m2\repository\org\apache\tomcat\embed
SpringBoot启动Unable to start ServletWebServerApplicationContext due to missing ServletWebServerFactor_第2张图片

你可能感兴趣的:(SpringBoot)