无法识别@ContextConfiguration的参数类

时间:2018-12-16 08:55:18

标签: java spring context-configuration

在以下测试课程中

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

import static org.junit.Assert.assertNotNull;

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes=CDPlayerConfig.class)
public class CDPlayerTest {

    @Autowired
    private CompactDisc cd;

    @Test
    public void cdShouldNotBeNull(){
        assertNotNull(cd);
    }
}

行中的编译器hightlights参数类
@ContextConfiguration(classes=CDPlayerConfig.class)

为错误。很容易找到CDPlayerConfing类,它被标记为Config类

@Configuration
@ComponentScan
public class CDPlayerConfig {
}

我想念一些进口商品吗?

1 个答案:

答案 0 :(得分:0)

我找到了解决方案。我一直在使用旧的Maven依赖项进行测试

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-test</artifactId>
        <version>3.0.5.RELEASE</version>
        <scope>test</scope>
    </dependency>

我已将5.0.1.RELEASE的版本更改为有效。