在 eclipse 中将 Spring Boot 应用程序导出为 JAR 文件
我正在使用Eclipse中的Spring STS来创建一个简单的基于Web的spring boot项目。我可以在Eclipse中很好地运行它,但是当我尝试将其导出为JAR文件时,我得到:
rg.springframework.context.ApplicationContextException: Unable to start embedded container; nested exception is org.springframework.context.ApplicationContextException: Unable to start EmbeddedWebApplicationContext due to missing EmbeddedServletContainerFactory bean.
My 位于 中,带有注释。public static void main
Application.java
@SpringBootApplication
我已经仔细检查了所有Maven依赖项一百次。
我做错了什么?