转载

SpringBoot 源码解析——源码下载

点击上方 " Java指南者 "关注,  星标或置顶一起成长

免费送 1024GB 精品学习资源  

下载源码

  • 下载源码

git clone https://github.com/spring-projects/spring-boot.git
  • GitHub fork 原仓库

fork 之后自己的仓库有一个 spring-boot 项目,地址是: https://github.com/zhisheng17/spring-boot.git

  • 配置用于代码提交的用户名和密码,防止使用公司的 git 邮箱账号提交

git config user.name "zhisheng"

git config user.email "1041218129@qq.com"

SpringBoot 源码解析——源码下载

  • 添加自己 GitHub 账号下 fork 的 springboot 仓库地址(用户提交开发分支)

git remote add zhisheng https://github.com/zhisheng17/spring-boot.git

SpringBoot 源码解析——源码下载

  • 切换到 release 分支

git checkout v2.2.8.RELEASE

为什么选择这个版本

为什么选择使用 v2.2.8.RELEASE 版本,主要是因为 2.3.x 版本 SpringBoot 开始使用 Gradle 作为依赖管理的工具,而 2.2.8 RELEASE 版本是 2.2.x 中最新最稳定的版本,使用的是 Maven 管理的依赖,自己比较熟悉,后期维护成本比较低。

编译源码

在源码目录中执行下面的命令就可以编译了:

mvn clean install -DskipTests=true -Dcheckstyle.skip -Dfast -T 4C -Dmaven.compile.fork=true

编译结果如下:

SpringBoot 源码解析——源码下载

关注我

关注我,Java 学习不迷路!

SpringBoot 源码解析——源码下载
原文  http://mp.weixin.qq.com/s?__biz=MzIxMTE0ODU5NQ==&mid=2650240534&idx=2&sn=4ad2a300b5fb181da6fa0ea5f7a8ad5d
正文到此结束
Loading...