- 准备工作:
jdk8
jdk环境变量设置:编辑~/.bash_profile文件
- 编译源码
参考文献
github spring framework
下载源码:
git clone git@github.com:spring-projects/spring-framework.git
导入到eclipse:
./import-into-eclipse.sh
中间需要点击两次enter,第二次会检查gradle是否安装,没安装的话会自动下载gradle,下载速度超慢的话,可以考虑手动安装。
手动安装gradle:
下载压缩包或者从别的地方拷贝一份,解压缩,然后设置gradle环境
vim ~/.bash_profile
再次运行./import-into-eclipse.sh
。发现还是会自动下载grable。编辑.sh文件。把./gradlew 都替换为 gradle (gradlew 会自动下载gradle)
然后再次运行./import-into-eclipse.sh
, 中间需要下载各种依赖包,需要时间长一点,可能会failed或者卡死,杀掉重新执行就OK。
打开eclipse,File->Import>Exist file system> root dirctionary
.
Install all spring-* jars into yout local maven cache
gradle install
Compile and test; build all jars, distribution zips, and docs
gradle build
最后build success。
打开eclipse, 发现有些子项目有错,有个方法返回boolean类型,代码中返回void,先直接返回true。