IDEA Maven Springboot

maven

下載

http://archive.apache.org/dist/maven/maven-3/3.3.9/binaries/

安裝

https://www.cnblogs.com/huxiuqian/p/10009589.html

mvn help:system

https://blog.csdn.net/cs4380/article/details/79158268
settings.xml文件中,在mirrors標籤中添加子標籤如下

<mirror>      
  <id>nexus-aliyun</id>    
  <name>nexus-aliyun</name>  
  <url>http://maven.aliyun.com/nexus/content/groups/public</url>    
  <mirrorOf>central</mirrorOf>      
</mirror> 

IDEA

  1. 使用IDEA創建maven項目卻沒有src目錄的問題 https://blog.csdn.net/Days_of_April/article/details/81351154

    你所創建的maven項目還是沒有src目錄的話,八成應該是你的maven倉庫是空的

  2. Could not transfer artifact org.springframework.boot:spring-boot-starter-parent:pom:1.5.4.RELEASE
    https://www.jianshu.com/p/7c82137e6cd2
    打開終端,進入出錯項目的根目錄,然後使用 maven bin 目錄下的 mvn 編譯一下,完成之後右鍵項目 Maven——Update Project 即可。

Spring boot

下載

當前版本
https://docs.spring.io/spring-boot/docs/current/reference/html/getting-started.html#getting-started-installing-spring-boot

指定版本1.5.9.RELEASE
https://docs.spring.io/spring-boot/docs/1.5.9.RELEASE/reference/html/getting-started-installing-spring-boot.html#getting-started-installing-the-cli

主要在<https://docs.spring.io/spring-boot/docs
https://docs.spring.io/spring-boot/docs/1.5.9.RELEASE/reference/html/裏找installing

20200620

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章