3

我正在使用 Spring 3 和 Hibernate 4

我有以下类结构

public interface GenericDAO<T> {

    public void create(T entity);
    public void update(T entity);
    public void delete(T entity);
}

DAO 类

public interface EmployeeDAO extends GenericDAO<Employee>  {

    public void findEmployee(EmployeeQueryData data);
}

DAO 实现类

@Repository("employeeDAO")
public abstract class EmployeeDAOImpl implements EmployeeDAO {

protected EntityManager entityManager;

@Override
public void findEmployee(EmployeeQueryData data) {

...... code

}

我面临的问题是当我尝试部署时,出现以下异常。如果我abstract从中EmployeeDAOImpl删除并从中删除extends GenericDAO<Employee>EmployeeDAO则应用程序将被部署而没有错误。所以不可能有abstract类,EmployeeDAOImpl或者我需要在没有的GenericDAO情况下实现DAO实现中的所有方法abstract

Error creating bean with 
name 'employeeService': Injection of autowired dependencies failed; \
nested exception is org.springframework.beans.factory.BeanCreationException:
Could not autowire field: test.dao.EmployeeDAO 
test.service.EmployeeServiceImpl.employeeDAO; nested exception is
org.springframework.beans.factory.NoSuchBeanDefinitionException: 
No matching bean of type [test.dao.EmployeeDAO] found for dependency: 
expected at least 1 bean which qualifies as autowire candidate for 
this dependency. Dependency annotations: 
{@javax.inject.Inject()}.

编辑 1

通用DAOImpl

public class GenericDAOImpl<T> implements GenericDAO<T> {    

    public void create(T entity) {
    }       
    public void update(T entity) {
    }
    public void delete(T entity) {
    }

EmployeeDAOImpl

public class EmployeeDAOImpl extends GenericDAOImpl<Employee> implements EmployeeDAO {
4

3 回答 3

3

Java(以及 Spring)不能创建抽象类的实例:在 Java 允许您创建实例之前,每个方法都必须有一个实现,否则当您尝试调用该方法时会出现运行时错误。您需要从 EmployeeDAOImpl 中删除“抽象”并实现从 GenericDAO 继承的方法。

于 2013-03-07T11:16:30.007 回答
2

为什么要将类实现声明为抽象?从概念上讲,这是一个矛盾。显然 Spring 无法实例化它并失败。

于 2013-03-07T11:15:00.150 回答
1

确认您的 EmployeeDAOImpl 或其他带注释的类包是否在以下标记的 spring 上下文 xml 中提及。除非这样做,否则注释将不会被读取并且不会被初始化。

<context:component-scan base-package="com.app.service" />
于 2013-03-07T11:12:51.463 回答