无法处理位置和类以进行上下文配置

我写了以下测试:

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {"classpath:META-INF/dataContext.xml"},classes = Configiuration.class)
@ActiveProfiles("test")
public class CityDaoImplTest {
....
}

当我调用时,我需要使用来自xml文件和java类bur的配置

mvn测试我在控制台中看到以下内容:

Tests in error: 
  initializationError(***.CityDaoImplTest): Cannot process locations AND classes for context configuration [ContextConfigurationAttributes@5bb21b69 declaringClass = '***.CityDaoImplTest', classes = '{***.Configiuration}', locations = '{classpath:META-INF/dataContext.xml}', inheritLocations = true, initializers = '{}', inheritInitializers = true, name = [null], contextLoaderClass = 'org.springframework.test.context.ContextLoader']; configure one or the other, but not both.

如何在不重写配置的情况下修复它?


答案 1

来自春季文档

在 Spring 3.1 之前,仅支持基于路径的资源位置。从Spring 3.1开始,上下文加载器可以选择支持基于路径基于类的资源。从Spring 4.0.4开始,上下文加载器可以选择同时支持基于路径基于类的资源。

但是,对于春季测试,有一个小警告。它使用基于的,不幸的是它不是那么聪明;)SmartContextLoaderAbstractDelegatingSmartContextLoader

@Override
public void processContextConfiguration(
        final ContextConfigurationAttributes configAttributes) {

    Assert.notNull(configAttributes, "configAttributes must not be null");
    Assert.isTrue(!(configAttributes.hasLocations() && configAttributes.hasClasses()), String.format(
        "Cannot process locations AND classes for context "
                + "configuration %s; configure one or the other, but not both.", configAttributes));

如代码所示,位置和类不能同时设置。

那么,如何解决这个问题呢?好吧,一种解决方案是添加一个额外的配置类,如下所示:

@Configuration
@ImportResource("classpath:META-INF/dataContext.xml")
class TestConfig {

}

并且,在测试代码中使用以下内容:

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = {Configuration.class, TestConfig.class})
@ActiveProfiles("test")
public class CityDaoImplTest { ... }

从技术上讲,这是重写配置,但您不必更改现有配置,只需添加一个新类(该类甚至可以与测试用例位于同一文件中)。@Configuration


答案 2

即使对你来说很晚了,我也会发布我的答案,只是为了帮助其他会读到这篇文章的人。

另一种解决方案是在 dataContext.xml 中将 Configuration 类声明为 bean。

您需要做的就是:

<bean class="com.packageWhereConfigClassIsPresent.Configuration"/>

希望它能帮助某人;)