从github下载spring框架源代码。我创建测试模块。
配置文件已修改,build.gradle
:
plugins {
id 'java'
}
group 'io.spring.asciidoctor'
version '5.2.5.BUILD-SNAPSHOT'
sourceCompatibility = 1.8
dependencies {
compile(project(":spring-beans"))
compile(project(":spring-core"))
compile(project(":spring-context"))
compile(project(":spring-aop"))
testCompile group: 'junit', name: 'junit', version: '4.12'
}
然后我创建测试Java源文件,使用
@Autowired
注释但它不起作用:
怎么了?
最佳答案
问题是您正在尝试编译相关项目,但这些项目不存在。您需要按它们的组和版本来引用这些 Artifact ,类似于使用JUnit 4.12时的方式。
dependencies {
compile group: 'org.springframework', name: 'spring-beans', version: '5.2.4.RELEASE'
compile group: 'org.springframework', name: 'spring-core', version: '5.2.4.RELEASE'
compile group: 'org.springframework', name: 'spring-context', version: '5.2.4.RELEASE'
compile group: 'org.springframework', name: 'spring-aop', version: '5.2.4.RELEASE'
}