springboot启动报错org.springframewor
2018-07-19 本文已影响0人
27岁未成年
今天第一次启动一个springboot项目
遇到这个问题是pom.xml文件中的有一个配置
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
这里provided这种配置默认这个依赖是智能在编译和测试时用的,所以把它改成compile或者直接删除,因为compile是默认的
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<!--<scope>provided</scope>-->
</dependency>
这样在运行就正常了