1. 程式人生 > >spring源代碼下載並導入eclipse技巧

spring源代碼下載並導入eclipse技巧

projects 安裝 chan receipt exe 訪問 比較 exp pro

mac電腦:
安裝brew:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
我之前已安裝好。

下載安裝gradle。
方法一:
brew install gradle
比較慢,可以去看一會書。但我喜歡這種。程序員都是懶的。

DannideMacBook-Pro:gradle danni$ ls
INSTALL_RECEIPT.json    NOTICE          libexec
LICENSE         bin
DannideMacBook-Pro:gradle danni$ pwd
/usr/local/opt/gradle

方法二:
或者訪問官網:https://gradle.org/install/
直接下載zip解壓快一點點:https://gradle.org/releases/
$ export PATH=$PATH:/opt/gradle/gradle-4.10.2/bin

然後下載源代碼:
git clone https://github.com/spring-projects/spring-framework
非常慢。

轉為eclipse項目:
gradle cleanidea eclipse
郝佳建議:不要全轉,慢而且容易編譯錯誤,得重新來。所以只對感興趣的轉。
轉後看看依賴哪些,再單獨轉哪些。

導入eclipse。
完成。

命令:
gradle -version
註意:直接gradle會生成.gradle文件夾

參考
《Spring源碼深度解析》
https://www.cnblogs.com/clnchanpin/p/7338590.html

spring源代碼下載並導入eclipse技巧