使用构造函数自动装配泛型类型 [Spring 4.2.5]

Posted

技术标签:

【中文标题】使用构造函数自动装配泛型类型 [Spring 4.2.5]【英文标题】:Autowiring generic types with constructor [Spring 4.2.5] 【发布时间】:2016-08-17 03:11:57 【问题描述】:

我是 Spring 新手,正在尝试像本文 http://www.ibm.com/developerworks/library/j-genericdao/ 中那样实现 Generic DAO。我有几个实体 - ConcreteEntity1 和 ConcreteEntity2。还有,我有课

public interface GenericDao<T extends Serializable>  
    public T get(long id);
    public List<T> get(String hql);
    public void remove(T persistentObject);
    public void add(T entity);

@Repository("hibGenericDao")
public class HibGenericDaoImpl<T extends Serializable> implements GenericDao<T> 

    @Autowired
    private SessionFactory sessionFactory;

    private Class<T> type;

    public HibGenericDaoImpl(Class<T> type) 
        this.type = type;
    

    /** @inheritDoc */
    @Override
    public T get(long id) 
        T entity;
        try (Session session = sessionFactory.getCurrentSession()) 
            entity = session.get(type, id);
        
        return entity;
    

    /** @inheritDoc */
    @Override
    public List<T> get(String hql) 
        List<T> entityList;
        try (Session session = sessionFactory.getCurrentSession()) 
            Query query = session.createQuery(hql);
            entityList = query.list();
        
        return entityList;
    

    /** @inheritDoc */
    @Override
    public void remove(T persistentObject) 
        try (Session session = sessionFactory.getCurrentSession()) 
            session.delete(persistentObject);
        
    

    /** @inheritDoc */
    @Override
    public void add(T entity) 
        try (Session session = sessionFactory.getCurrentSession()) 
            session.saveOrUpdate(entity);
        
    

现在我正在尝试编写服务层,我想自动连接HibGenericDaoImpl&lt;ConcreteEntity1&gt;,其中字段type 包含ConcreteEntity1.class。你能说一下没有XML如何执行吗?

【问题讨论】:

【参考方案1】:

如果您已经在使用 spring,则可以使用 GenericTypeResolver 实用程序类,如此 SO 答案所示:How to get a class instance of generics type T

您应该能够执行以下操作:

 this.type = (Class<T>) GenericTypeResolver.resolveTypeArgument(getClass(), GenericDao.class);

【讨论】:

【参考方案2】:

用零参数构造函数替换你的构造函数。然后您可以使用this link 获得带有反射的T 类型。

【讨论】:

以上是关于使用构造函数自动装配泛型类型 [Spring 4.2.5]的主要内容,如果未能解决你的问题,请参考以下文章

在Spring中通过构造自动装配--constructor

如何在 Spring 中自动装配泛型类型 <T> 的 Bean?

Spring

Spring 3.2注释自动装配多个构造函数

Spring入门

Spring Boot 构造函数自动装配异常