1. Download GitHub via http://gitforwindows.org/
2. Download via http://services.gradle.org/distributions/gradle;gardle similar to MAVEN project management
2.1, configure environment variables, check whether Gradle can load: gradle-version; Configuration method similar to configuration JDK
3. Download the Spring source code from the command worker GitHub: Git clone git://github.com/springsource/spring-framework.git
Note: This command will download the latest spring source from GitHub, but as of December 27, 2017, Gradle's warehouse Jcenter has not fully included the latest spring source resources, So if compiling the latest spring with Gradle will pack all kinds of errors, the inclusion of a class can not be found in the Jcenter (I have this problem, modified the registry is not, and finally found to be such a problem). So it is recommended to pass
git clone-b 3.2.x https://github.com/spring-projects/ Spring-framework.git Download spring3.2 source code, of course, want to download other versions of the can also be via https://github.com/spring-projects/ Spring-framework on GitHub to find the spring source that exists
4、进入下载的spring源码的文件夹,执行gradle cleanidea eclipse命令,将spring源码转为eclipse工程
Spring Source Code First _ get the source code and convert the source to eclipse project