Spring源码编译及过程中的一些问题总结

1、跳过测试

gradlew build -x test

2、编译失败,提示信息为

 Failed to create MD5 hash for file 'F:\code\spring-framework\build\distributions\spring-framework-5.0.5.BUILD-SNAPSHOT-schema.zip'

出现该问题,是因为windows环境下的路径寻找问题。
解决方法:修改项目中gradle配置的Zip路径
如果是master版本,则修改Spring-framework\gradle\docs.gradle文件
如果是4.3.x版本,则修改Spring-framework\build.gradle文件
查找 task schemaZip(type: Zip) 模块
 it.path.endsWith("META-INF/spring.schemas")
修改为
it.path.endsWith("META-INF\\spring.schemas")
it.path.endsWith(schemas.get(key))
修改为
 it.path.endsWith(schemas.get(key).replaceAll('\\/','\\\\'))

 

3、gradle下载慢问题

在gradle/wrapper/gradle-wrapper.properties文件中修改为本地压缩文件

distributionUrl=file\:///C:/Users/wl/.gradle/wrapper/dists/gradle-6.7.1-all.zip

4、gradle下载依赖慢

在build.gradle中添加

buildscript{
    repositories{
        maven{ url 'https://maven.aliyun.com/repository/google' }
        maven{ url 'https://maven.aliyun.com/repository/jcenter' }
        maven{ url 'https://maven.aliyun.com/nexus/content/groups/public/' }
        maven{ url 'https://maven.aliyun.com/nexus/content/repositories/jcenter' }
    }
}

5、gradle下载jar超时失败

直接下载后,放到.gradle下的包目录下

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

kgduu

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

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

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

打赏作者

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

抵扣说明:

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

余额充值