完整的错误:
'parent.relativePath' of POM com.qbb:log_record_elegant:1.0-SNAPSHOT (F:\QbbCode\qiu_code\log_record_elegant\pom.xml) points at com.qbb:qiu_code instead of org.springframework.boot:spring-boot-starter-parent, please verify your project structure
解决办法:加一个 <relativePath />
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.3</version>
<relativePath />
</parent>
标签:code,parent,spring,boot,qbb,com
From: https://www.cnblogs.com/qbbit/p/17008020.html