idea创建SpringBoot项目里的pom文件没有<parent>

问题出现的原因

idea创建SpringBoot项目里的pom文件没有<parent>_第1张图片
初始化项目的时候,使用的URL是阿里云版的。官网的是采用继承的parent标签。阿里云是直接通过引用依赖,所以看不到parent标签。

解决方法

  1. 使用其他URL来创建项目
    idea创建SpringBoot项目里的pom文件没有<parent>_第2张图片
    点击设置
    idea创建SpringBoot项目里的pom文件没有<parent>_第3张图片
    修改URL:http://start.spring.io/
  2. 在创建好的pom.xml文件里,自己添加parent标签
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.7.5</version>
        <relativePath/> 
    </parent>

你可能感兴趣的:(idea工具学习,spring,boot,intellij-idea,后端)