English 中文(简体)
在母类中为实体管理者申报的持久性环境单位Name
原标题:Overriding the persistentce context unitName declared for the EntityManager in a parent class.

我有一个通用DAO类 看起来像这个:

public class GenericDaoJpa <T extends DomainObject> implements GenericDao<T> {

    private final Class<T> type;

    @PersistenceContext(type=PersistenceContextType.TRANSACTION, unitName="myPersistenceUnit")
    protected EntityManager entityManager;

    public GenericDaoJpa(Class<T> type) {
        super();
        this.type = type;
    }

    public void setEntityManager(EntityManager entityManager) {
        this.entityManager = entityManager;
    }

    public T get(Object id) {
        return (T) entityManager.find(type, id);
    }
}

执行 DAO 类看起来是这样的:

    @Repository("appDao")
    public class ProductDaoJpa extends GenericDaoJpa<Product> implements ProductDao{

    public ProductDaoJpa() {
        super(Product.class);
    }

    public List<Product> getAllProducts() {
        return getAll();
    }   
}

我为不同的数据库配置了另一个名为我的第二支持单位的持久性单位。 我想创建一个新的 DAO 类, 它将扩展通用 DaoJpa 类, 但使用不同的持续单位 。 我如何才能扩展通用 DaoJpa 类, 但对每个 DAO 使用不同的永久单位?

我试图把这个声明移到 DAO 的每类中, 但这导致母类没有编译, 因为它没有提到实体管理者 。

@PersistenceContext(type=PersistenceContextType.TRANSACTION, unitName="myPersistenceUnit")
protected EntityManager entityManager;
最佳回答

尝试使用方法注射代替 :

public class GenericDaoJpa <T extends DomainObject> implements GenericDao<T> {

    @PersistenceContext(type=PersistenceContextType.TRANSACTION, unitName="myPersistenceUnit")
    public void setEntityManager(EntityManager entityManager) {
        this.entityManager = entityManager;
    }
}

需要使用不同PU的儿童类别:

@Repository("appDao")
public class ProductDaoJpa extends GenericDaoJpa<Product> implements ProductDao{

    @Override
    @PersistenceContext(type=PersistenceContextType.TRANSACTION, unitName="mySecondPersistenceUnit")
    public void setEntityManager(EntityManager entityManager) {
        this.entityManager = entityManager;
    }
}
问题回答

暂无回答




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签