Unable to start EmbeddedWebApplicationContext due to missing EmbeddedServletContainerFactory bean.

来源:互联网 发布:95后嫩模网络直播 编辑:程序博客网 时间:2024/06/05 02:39

Spring Boot创建项目运行时若出现这个错误,解决办法是:

在程序运行入口类加入注解

@EnableAutoConfiguration
@SpringBootApplication


0 0