關於pom.xml中maven無法下載springcloud包問題
**代碼環境:**spring boot 2.1.2,springcloud :Greenwich.RELEASE
**問題描述:**spring-cloud-starter-feign,spring-cloud-starter-eureka 一直無法下載,maven倉庫中包路徑顯示為unknown
pom.xml內容:
<version.spring-cloud>Greenwich.RELEASE</version.spring-cloud> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-feign</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-eureka</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>${version.spring-cloud}</version> <type>pom</type> <scope>import</scope> </dependency>
**錯誤原因:**查看官網及spring中央倉庫發現,boot2.1.x對應的cloud版本已經不推薦使用上面的兩個jar包,
修改pom.xml
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-openfeign</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId> <exclusions> <exclusion> <artifactId>guava</artifactId> <groupId>com.google.guava</groupId> </exclusion> </exclusions> </dependency>
修改後重新reimport,問題解決。這是自己粗心大意造成的問題,特此記錄以示警告
註:其他無法下載spring相關包的原因,可能是私服沒有配置spring的 中央倉庫代理地址
中央倉庫地址:https://repo.spring.io/milestone/org/springframework/cloud/spring-cloud-starter-eureka/
到此這篇關於pom.xml中maven無法下載springcloud包問題的文章就介紹到這瞭,更多相關maven無法下載springcloud包內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- SpringCloud如何搭建一個多模塊項目
- SpringCloud eureka(server)微服務集群搭建過程
- 聊聊SpringCloud和SpringCloudAlibaba的區別
- springcloud gateway無法路由問題的解決
- IDEA使用SpringAssistant插件創建SpringCloud項目