我正在尝试以编程方式在jUnit测试中将内部bean添加到我的应用程序上下文中。我不想通过使用@Component
注释bean来污染我的上下文,因为它会影响在同一上下文中运行的所有其他测试。
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错了吗?我错过了指定构造函数的东西吗?
答案 0 :(得分:1)
写这篇文章实际上是宣泄。帮我找到了我的错误/错误。必须使内部类Static或Spring无法实例化它。希望这可能在将来帮助其他人。
即:
/**
* Sample test patch to modify the schema
*/
static public class SchemaUpdatePatch extends PatchBaseImpl {
public SchemaUpdatePatch(){
super();
}
@Override
public void applyPatch() throws Exception {
}
};