使用SpringJUnit4ClassRunner自定义BeanFactory?

时间:2011-01-07 13:44:44

标签: java spring

最终通过创建缓存bean工厂解决了slow autowire by type problem

我真的希望能够将这样的CachingByTypeBeanFactory与SpringJUnit4ClassRunner一起用于使用@Autowired运行JUnit测试。但似乎无法通过ContextLoader在应用程序上下文中更改Bean Factory。

还有其他办法吗?

1 个答案:

答案 0 :(得分:8)

创建您自己的ContextLoader并将此注释附加到您的JUnit类:

@ContextConfiguration(loader=YourLoader.class)

这是我的示例Loader,它实例化另一个或自定义ApplicationContext,而后者又可以使用自定义BeanFactory初始化(取决于功能):

public class XmlWebApplicationContextLoader extends AbstractContextLoader {

    public final ConfigurableApplicationContext loadContext(final String... locations) throws Exception {
        ServletContext servletContext = new MockServletContext("war", new FileSystemResourceLoader());
        GenericWebApplicationContext webContext = new GenericWebApplicationContext();
        servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE, webContext);
        webContext.setServletContext(servletContext);
        new XmlBeanDefinitionReader(webContext).loadBeanDefinitions(locations);        
        AnnotationConfigUtils.registerAnnotationConfigProcessors(webContext);
        webContext.refresh();
        webContext.registerShutdownHook();
        return webContext;
    }

    protected String getResourceSuffix() {
        return "";
    }

}

在上面的案例中,应用程序上下文(由Spring Framework提供)具有构造函数:

public GenericWebApplicationContext(DefaultListableBeanFactory beanFactory) {
    super(beanFactory);
}