SpringBoot项目报错the import org.springframew…

2020-03-07 16:05:14来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

SpringBoot项目报错the import org.springframework.web.*cannot be resolved

可能原因1: pom.xml中没有添加web依赖

添加:

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


原文链接:https://www.cnblogs.com/icemargin/p/12433091.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:spring——AOP原理及源码(四)

下一篇:SpringBoot整合Mybatis对单表的增、删、改、查操作