1. 依赖工具
Gradle Git JDK1.8+ IntelliJ IDEA
Gradle建议使用5.5.4,使用6.1.1提示版本太高
另外,本文参考官方提供的文档《import-into-idea》
网址:https://github.com/spring-projects/spring-framework/blob/master/import-into-idea.md
2. 源码拉取
从官方仓库 https://github.com/spring-projects/spring-framework Fork 出属于自己的仓库。
3. 预编译 spring-oxm 项目
调整仓库,可以加快速度
<code>repositories {
\tmavenLocal()
\tmaven { url "http://maven.aliyun.com/nexus/content/groups/public/" }
\t\t}/<code>
打开 IDEA Terminal ,输入如下命令,预编译 spring-oxm 项目:
<code>./gradlew :spring-oxm:compileTestJava/<code>
当看到 BUILD SUCCESSFUL ,说明编译成功。
或者使用gradle视图
以编译整个工程了!(这个过程非常耗时间,可能20几分钟!)
如发现spring-aspects模块有错误, 选中该模块,右键--Load/Unload Modules ,把spring-aspects下的所有项目排除出去。
閱讀更多 layne 的文章