springboot项目Process finished with exit code 0

项目场景:

快速创建一个web服务

新建springboot项目-->配置maven-->启动


问题描述

服务运行然后结束

Process finished with exit code 0

springboot项目Process finished with exit code 0_第1张图片


 

原因分析:

没有引入web依赖

项目没有引入web依赖,缺乏web项目启动容器


解决方案:

引入spring-boot-starter-web依赖


        
            org.springframework.boot
            spring-boot-starter-web
        

你可能感兴趣的:(Spring,spring,boot,java,spring,后端,intellij-idea)