spring启动一下就停止了。
这个问题比较简单,百度了下,还是有些人问,记录下吧。
是因为没有引入spring-boot-starter-web包,或者该包没有生效。
有时spring-boot-starter-parent版本不对,就可能没生效,写明version版本再试下。
xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>1.3.0.RELEASE</version>
</dependency>