Closing org.springframework.context.annotation.AnnotationConfigApplicationContext

Spring boot 启动后自动关闭,log输出

Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@2c104774: startup date [Thu Aug 16 11:23:04 CST 2018]; parent: org.springframework.context.annotation.AnnotationConfigApplicationContext@6531a794
Unregistering JMX-exposed beans on shutdown
Unregistering JMX-exposed beans

检查POM.xml 发现 spring-boot-starter-web 中移除了Tomcat, 这是在实验打成war包是的坑

Closing org.springframework.context.annotation.AnnotationConfigApplicationContext_第1张图片
将上面红框处注释掉后,再次尝试启动发现还是不行
原因是,删除后Maven并没有对项目进行UPDATE,手动对项目UPDATE后,再次启动问题解决了。

你可能感兴趣的:(spring,boot)