Could not find artifact -boot-starter-web

时间:2025-04-21 17:50:16

遇到此问题发现是

文件中 spring-boot-starter-web配置有问题,没有4.0以上的版本,需要在配置文件中加上版本号2.1.,不同的项目版本号不一样,作者这里煞费苦心,花了半个小时解决此问题

即可解决此问题

 <dependency>
            <groupId></groupId>
            <artifactId>spring-boot-starter-web</artifactId>
             <version>2.1.</version>
        </dependency>