我对Spring的依赖jnjection有一个很大的问题。我创建了一个实现我的DAO接口的类ObjectJPA
。现在我想在JUnit测试用例中测试它。但我得到了NoSuchBeanDefinitionException
。
这是测试的开始:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath:Spring-Common.xml" })
public class Test {
@Autowired
ObjectJPA jpa;
}
这就是豆子
package model.dao.jpa;
@Repository
public class ObjectJPA implements ObjectDAO { … }
Spring-Common.xml的内容
<bean class="….ObjectJPA" />
接口声明
package model.dao;
public interface ObjectDAO {
Spring-Common.xml的内容
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<bean class="org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor" />
<context:component-scan base-package="model.dao.jpa" />
<bean class="model.dao.jpa.ObjectJPA" />
<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="persistenceUnitName" value="model" />
<property name="persistenceXmlLocation" value="classpath*:META-INF/persistence.xml" />
<property name="jpaVendorAdapter">
<bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter" />
</property>
</bean>
<context:annotation-config />
<tx:annotation-driven />
</beans>
你有什么想法吗?您需要哪些信息才能获得更好的影响?
答案 0 :(得分:1)
对于Spring,bean的实际类型是其接口的类型,而不是其具体类型。所以你应该
@Autowired
private ObjectDAO jpa;
而不是
@Autowired
private ObjectJPA jpa;
实际上,Spring默认使用Java接口代理来实现AOP。因此它需要注入自己的代理,它实现bean的所有接口并包装它,但它不是其具体类的实例。这不是问题,因为使用接口的全部意义是在引用对象时使用它们,而不是使用对象的具体类型(就像使用类型List
来引用List一样,而不是类型ArrayList
)。