spring-boot-maven-plugin引入出現爆紅(已解決)
一、問題描述
換瞭一臺電腦,重新進行idea安裝配置。然後打開原來的項目結果引入spring-boot-maven-plugin出現爆紅,而且spring-boot-starter-parent也不能引入。
二、解決辦法
1.檢查環境配置,主要是settings.xml此文件配置情況是否正確,是否加入阿裡雲鏡像。最好用idea工具打開檢查一下是否規范,此次我的問題就出在settings.xml報錯瞭(網上隨意復制粘貼瞭一個)。settings.xml配置文件以及idea工具打開查看的方式如下所示。
<?xml version="1.0" encoding="UTF-8"?> <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <!-- 配置本地倉庫地址 --> <!--<localRepository>E:\maven\repository</localRepository>--> <!-- 配置下載Jar包的鏡像倉庫地址 --> <mirrors> <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror> <mirror> <id>uk</id> <name>Human Readable Name for this Mirror.</name> <url>http://uk.maven.org/maven2/</url> <mirrorOf>central</mirrorOf> </mirror> <mirror> <id>nexus</id> <name>internal nexus repository</name> <url>http://repo.maven.apache.org/maven2</url> <mirrorOf>central</mirrorOf> </mirror> </mirrors> <profiles> <!-- 下載源代碼和Javadoc --> <profile> <id>downloadSources</id> <properties> <downloadSources>true</downloadSources> <downloadJavadocs>true</downloadJavadocs> </properties> </profile> </profiles> <!-- 激活在profiles的配置項 --> <activeProfiles> <activeProfile>downloadSources</activeProfile> </activeProfiles> </settings>
2.檢查代碼是否出錯,加上具體版本號。
參考:https://blog.csdn.net/weixin_41988224/article/details/104388981
到此這篇關於spring-boot-maven-plugin引入出現爆紅(已解決)的文章就介紹到這瞭,更多相關spring-boot-maven-plugin爆紅內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- IDEA設置maven修改settings.xml配置文件無法加載倉庫的解決方案
- MAVEN的安裝配置與IDEA整合超詳細教程
- 如何將maven源改為國內阿裡雲鏡像
- 帶你走進Maven的大門-最全Maven配置及集成idea工具總結
- maven私服搭建的實現步驟