Spring源码环境搭建成功之后,写个测试类打算调试源码,结果报错
.gradle文件内容如下
description = "infuq"
dependencies {
compile(project(":spring-beans"))
compile(project(":spring-core"))
compile(project(":spring-context"))
testCompile(testFixtures(project(":spring-beans")))
testCompile(testFixtures(project(":spring-core")))
testCompile(testFixtures(project(":spring-context")))
testFixturesImplementation(testFixtures(project(":spring-core")))
}
配置也没错,但是为啥import失败呢.
我是先搭建好Spring源码,然后又新增了一个自己的模块
查看settings.gradle文件
就是这样的,导致import失败.也是因为没用过gradle,遇到这样的错误,上网搜索答案,多次尝试,还是失败了.浪费了好久
最后我就改成了如下
瞎猫碰见笨耗子,居然import成功了.
看来还是要抽时候好好学习下gradle了