0

我正在尝试在 jUnit 测试中以编程方式将内部 bean 添加到我的应用程序上下文中。我不想通过注释 bean 来污染我的上下文,@Component因为它会影响在同一上下文中运行的所有其他测试。

public class PatchBaseImplTest extends TestBase{

    /**
     * Sample test patch to modify the schema
     */
    public class SchemaUpdatePatch extends PatchBaseImpl {
        public SchemaUpdatePatch(){
            super();
        }

        @Override
        public void applyPatch() throws Exception {
        }
    };

    @Before
    public void setUp(){
        // add patch to context
        beanRegistry.registerBeanDefinition("SchemaUpdatePatch",  SchemaUpdatePatch.class,  BeanDefinition.SCOPE_PROTOTYPE);
        schemaPatch = (Patch)applicationContext.getBean("SchemaUpdatePatch", SchemaUpdatePatch.class);

    }
}

其中 registerBeanDefinition 定义为:

    public void registerBeanDefinition( String name, Class clazz, String scope){
        GenericBeanDefinition definition = new GenericBeanDefinition();
        definition.setBeanClass(clazz);
        definition.setScope(scope);
        definition.setAutowireCandidate(true);
        definition.setAutowireMode(GenericBeanDefinition.AUTOWIRE_BY_TYPE);

        registry.registerBeanDefinition(name,  definition);
    }

我可以看到 bean defn 已添加到应用程序上下文中,但是当我尝试使用 appContext.getBean() 检索 bean 时,Spring 会抛出该类缺少构造函数的错误:

Caused by: org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [com.ia.system.patch.PatchBaseImplTest$SchemaUpdatePatch]: No default constructor found; nested exception is java.lang.NoSuchMethodException: com.ia.system.patch.PatchBaseImplTest$SchemaUpdatePatch.<init>()
    at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:83)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateBean(AbstractAutowireCapableBeanFactory.java:1000)
    ... 35 more
Caused by: java.lang.NoSuchMethodException: com.ia.system.patch.PatchBaseImplTest$SchemaUpdatePatch.<init>()
    at java.lang.Class.getConstructor0(Class.java:2800)
    at java.lang.Class.getDeclaredConstructor(Class.java:2043)
    at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:78)
    ... 36 more

我尝试向 SchemaUpdatePatch 类添加一个默认构造函数,但这似乎并不重要。

但是,如果我使用 @Component 对其进行注释,而不是以编程方式将其添加到上下文中,并尝试通过 applicationContext.getBean() 访问它,它就可以正常工作。

以编程方式将此 bean 添加到 applicationContext 的正确方法是什么?我的 GenericBeanDefinition 错了吗?我是否遗漏了一些东西来指定构造函数是什么?

4

1 回答 1

1

写这篇文章实际上是一种宣泄。帮助我找到我的错误/错误。必须使内部类静态或 Spring 无法实例化它。希望这可以在将来对其他人有所帮助。

IE:

/**
 * Sample test patch to modify the schema
 */
static public class SchemaUpdatePatch extends PatchBaseImpl {
    public SchemaUpdatePatch(){
        super();
    }

    @Override
    public void applyPatch() throws Exception {
    }
};
于 2013-10-18T18:55:31.780 回答