美文网首页
springboot启动报错org.springframewor

springboot启动报错org.springframewor

作者: 27岁未成年 | 来源:发表于2018-07-19 15:32 被阅读0次

    今天第一次启动一个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>
    

    这样在运行就正常了

    相关文章

      网友评论

          本文标题:springboot启动报错org.springframewor

          本文链接:https://www.haomeiwen.com/subject/nneapftx.html