解决spring-boot启动异常Unable to start EmbeddedWebApplicationContext due to missing EmbeddedServletContain

人生处万类,知识最为贤。这篇文章主要讲述解决spring-boot启动异常Unable to start EmbeddedWebApplicationContext due to missing EmbeddedServletContain相关的知识,希望能为你提供帮助。
第一种:
需要在主类头加上  @EnableAutoConfiguration
 
【解决spring-boot启动异常Unable to start EmbeddedWebApplicationContext due to missing EmbeddedServletContain】第二种:
pom文件是否加了
< dependency>
< groupId> org.mybatis.spring.boot< /groupId>
< artifactId> mybatis-spring-boot-starter< /artifactId>
< exclusions>
< exclusion>
< groupId> org.springframework.boot< /groupId>
< artifactId> spring-< /artifactId>
< /exclusion>
< /exclusions>
< /dependency>
如果在上述依赖加入了tomcat来启动,需要注释掉,否则无法通过mian方法启动起来。










    推荐阅读