spring-boot-maven-plugin引入出現(xiàn)爆紅(已解決)
換了一臺電腦,重新進行idea安裝配置。然后打開原來的項目結(jié)果引入spring-boot-maven-plugin出現(xiàn)爆紅,而且spring-boot-starter-parent也不能引入。
二、解決辦法1.檢查環(huán)境配置,主要是settings.xml此文件配置情況是否正確,是否加入阿里云鏡像。最好用idea工具打開檢查一下是否規(guī)范,此次我的問題就出在settings.xml報錯了(網(wǎng)上隨意復(fù)制粘貼了一個)。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:mavenrepository</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
到此這篇關(guān)于spring-boot-maven-plugin引入出現(xiàn)爆紅(已解決)的文章就介紹到這了,更多相關(guān)spring-boot-maven-plugin爆紅內(nèi)容請搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!
相關(guān)文章:
1. python如何實現(xiàn)word批量轉(zhuǎn)HTML2. python excel和yaml文件的讀取封裝3. python3實現(xiàn)往mysql中插入datetime類型的數(shù)據(jù)4. python爬蟲實戰(zhàn)之制作屬于自己的一個IP代理模塊5. moment轉(zhuǎn)化時間戳出現(xiàn)Invalid Date的問題及解決6. Android中的緩存7. 關(guān)于 Android WebView 的內(nèi)存泄露問題8. java——Byte類/包裝類的使用說明9. Python中內(nèi)建模塊collections如何使用10. Spring boot整合連接池實現(xiàn)過程圖解
