Spring-framework 源码导入 IntelliJ IDEA 记录

  想学习spring框架,不看源码怎么行。网上有很多教程,但是自己实施起来还是稍微有点坎坷的,不过最后还是成功了。遂以此文记录。

  环境说明:

  Idea  2017.2.5

  spring-framework  v4.3.9.RELEASE

  gradle 2.12 (版本太高好像有问题)

源码下载

  首先我们从github上克隆 spring的源码。

  

Spring-framework 源码导入 IntelliJ IDEA 记录

  然后使用 git tag 命令查看分支

  

Spring-framework 源码导入 IntelliJ IDEA 记录

  我们将4.3.9.RELAESE 版本的代码下载到本地。

  

Spring-framework 源码导入 IntelliJ IDEA 记录

  

Spring-framework 源码导入 IntelliJ IDEA 记录

  gradle 安装这里不在介绍。

开始导入

  我们打开源码文件夹,打开 import-into-idea.md

  

Spring-framework 源码导入 IntelliJ IDEA 记录

 

   然后执行命令: gradle cleanIdea :spring-oxm:compileTestJava (以下是一个稍微漫长的过程~~)

   

Spring-framework 源码导入 IntelliJ IDEA 记录

  

Spring-framework 源码导入 IntelliJ IDEA 记录

  好,看到 BUILD SUCCESSFUL 很开心~~然后我们按照文档中的做即可。

  

  1. Pre-compile `spring-oxm` with `./gradlew cleanIdea :spring-oxm:compileTestJava`
  2. Import into IDEA (File->import project->import from external model->Gradle)
  3. Set the Project JDK as appropriate (1.8+)
  4. Exclude the `spring-aspects` module (Go to File->Project Structure->Modules)
  5. Code away

  

排除万难

  现实中当然没有文档中那么顺利,首先编译会出一些错误,没关系。我们先新建一个测试项目。 然后 File =>Project Structure. 选中测试项目,添加Dependencies。

 

   

Spring-framework 源码导入 IntelliJ IDEA 记录

  这里要提一句,本来 common-logging我是没有加的,后来就会报ClassNotFound。于是我在pom,xml引入就好了。

  

Spring-framework 源码导入 IntelliJ IDEA 记录

 

<dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.1.1</version> </dependency>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wpzgyy.html