releases:   ​​https://github.com/spring-projects/spring-framework/releases​


git clone https://github.com/spring-projects/spring-framework.git

cd spring-framework

#看服务器分支
git branch -a

#查看本地分支
git branch

#检出5.0版本到本地
git checkout origin/5.0.x

#查看本地分支
git branch

spring源码导入idea_gradle


编译该篇文章

导入idea

Import into IntelliJ (File -> New -> Project from Existing Sources -> Navigate to directory -> Select build.gradle)


 spring源码导入idea_github_02