记一次IDEA搭建Spring源码阅读环境

环境:Windows10/11、IntelliJ IDEA2021.3、Java1.8

一、下载Gradle

https://services.gradle.org/distributions/,下载gradle-7.3-bin.zip

image-20211125185708458

下载后解压到你想要的目录,打开所示目录,新建init.gradle文件,配置内容如下,添加阿里云私服,加快包下载速度

image-20211125190450013

allprojects {
    repositories {
        maven { url 'file:///E:/java/maven_repository'}
        mavenLocal()
        maven { name "Alibaba" ; url "https://maven.aliyun.com/repository/public" }
        maven { name "Bstek" ; url "https://nexus.bsdn.org/content/groups/public/" }
        mavenCentral()
    }

    buildscript { 
        repositories { 
            maven { name "Alibaba" ; url 'https://maven.aliyun.com/repository/public' }
            maven { name "Bstek" ; url 'https://nexus.bsdn.org/content/groups/public/' }
            maven { name "M2" ; url 'https://plugins.gradle.org/m2/' }
        }
    }
}

二、配置环境变量

新建系统变量,变量名为GRADLE_HOME,变量值为Gradle安装包所在目录

image-20211125190003091

添加到PATH环境变量中

image-20211125190120293

新建GRADLE_USER_HOME,作为Gradle仓库目录

image-20211125190317816

三、下载Spring源码

到Spring Github仓库,https://github.com/spring-projects/spring-framework,复制git地址https://github.com/spring-projects/spring-framework.git

打开IDEA,选择如图

image-20211125191311437

clone即可

image-20211125191403515

另外,IDEA的Gradle配置如下

image-20211125191618920

接下来等待下载依赖即可

image-20211125191847143

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

淮城一只猫

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值