taotao商城子工程错误
仔细查看发现在父工程的pom.xml文件中是: < groupId > com.taotao </ groupId > < artifactId > taotao-parent </ artifactId > < version > 0.0.1-SNAPSHOT </ version > 1 2 3 而子工程中的pom.xml文件: < parent > < groupId > com.taotao </ groupId > < artifactId > taotao.parent </ artifactId > < version > 0.0.1-SNAPSHOT </ version > </ parent > 1 2 3 4 5 6 原来自动生成的子工程pom.xml关于父工程的配置是根据新建maven project时生成的,并不具备自动匹配父工程的pom.xml文件中的 <artifactId>taotao-parent</artifactId> 标签体。 我们需要将 parent> 中 文章来源: taotao商城子工程错误