在新獲取git中項目時出現的問題匯總
阿新 • • 發佈:2019-04-01
bug image 需要 png 文件 紅色 ref 數據庫 sql數據庫
新下拉git項目,今天遇到的問題,因為剛配置實用jdk和idea,所以有可能在打開springboot項目時查看mysql數據庫驅動顯示為紅色.
之後看到pom文件也沒有錯,最後發現才是在項目中還沒有setup JDK,之後bug消除.
在下拉git項目時,需要更改當前文件為源目錄,如下圖:
還需要右鍵下pom.xml 選擇 Add as Maven Project
之後需要重新導入下依賴.
如果依賴出錯,則可能是maven版本,倉庫地址不同引發的.
IDEA中打開setting配置現有或者共同的maven版本
倉庫調整在maven目錄中的conf文件夾下的settings.xml
需要調整鏡像地址 如下 (例子裏是阿裏雲的中央倉庫)
<mirrors> <!-- mirror | Specifies a repository mirror site to use instead of a given repository. The repository that | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used | for inheritance and direct lookup purposes, and must be unique across the set of mirrors. | <mirror> <id>mirrorId</id> <mirrorOf>repositoryId</mirrorOf> <name>Human Readable Name for this Mirror.</name> <url>http://my.repository.com/repo/path</url> </mirror>--> <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror> </mirrors>
之後IDEA中提示重新導入maven依賴基本就告別這個bug了.
ps: 有的依賴是必須依賴某些其它安裝的,例如 lombok
在新獲取git中項目時出現的問題匯總