springboot 启动报错[extShutdownHook]

运行Springboot时出现了错误...

发现自己忘了导入web启动器

在pom.xml导入此依赖包

<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
    <version>2.3.5.RELEASE</version>
</dependency>

然后再重新run,就没问题了

posted @ 2020-11-04 16:35  门口问  阅读(2149)  评论(0编辑  收藏  举报