springboot空项目启动后马上停止

148 阅读1分钟

原因是缺少starter-web的jar,本质原因缺少start-tomcat:

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>