eclipse中SpringBoot的maven項目出現沒法解析父類的解決辦法

  在eclipse中創建SpringBoot的maven項目時,繼承父類,添加以下代碼:html

1 <parent>
2     <groupId>org.springframework.boot</groupId>
3     <artifactId>spring-boot-starter-parent</artifactId>
4     <version>1.5.10.RELEASE</version>
5 </parent>

  但有時會出現解析不了父類的POM狀況(Project build error:Non-resolvable parent POM),這時只需在pom.xml中添加以下代碼:spring

 1 <repositories>
 2     <repository>
 3         <id>spring-snapshots</id>
 4         <url>http://repo.spring.io/libs-snapshot</url>
 5     </repository>
 6 </repositories>
 7 <pluginRepositories>
 8     <pluginRepository>
 9         <id>spring-snapshots</id>
10         <url>http://repo.spring.io/libs-snapshot</url>
11     </pluginRepository>
12 </pluginRepositories>

  最後再選中項目右鍵-->Maven-->Update Project便可解決問題。 eclipse

原文出處:https://www.cnblogs.com/wuyongji/p/11506311.htmlmaven

相關文章
相關標籤/搜索