? ? ? ? 启动SpringBoot项目成功启动后,总是自动退出。控制台应该会有一句提示消息:
No active profile set, falling back to default profiles: default
? ? ? ? 该问题一般都是因为Springboot项目在启动时没有正常启动Tomcat容器,只是执行了main方法而后进程关闭了。
在pom.xml文件添加如下代码:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
注意:添加依赖时注意版本号是否需要指定(<version>XXX</version>)。