点击启动类,项目启动了,但是却直接停止了。遇到这个问题如何解决呢?
想要项目一直启动是要部署在tomcat服务器上面了,说明现在项目没有运行在tomcat服务器上面。
解决方案:
添加springweb的starter依赖。
java"> <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency>
观察web的依赖发现,web依赖还传递依赖了tomcat。
springboot内嵌了tomcat服务器,所以启动了程序之后。项目可以一直的运行。