本文介绍了当您不确定单位名称时,如何创建EntityManager?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我遇到的情况是我需要在运行时确定EntityManager的单位名称。

I'm in a situation where I need to determine the EntityManager's unit name at run time.

例如,我想做这样的事情:

For example, I'd like to do something like this:

@PersistenceContext(unitName = findAppropriateJdbcName())
EntityManager entityManager;

但是,这不适用于注释。

However, this is not possible with annotations.

是否可以在运行时不确定单位名称时创建EntityManager?

Is it possible to create the EntityManager when your not sure of what the unit name is until run time?

推荐答案

它可以在运行时指定持久性单元(PU)名称,但这是在创建 EntityManagerFactory 时使用的参数,而不是单个 EntityManager 。有关持久性类方法 createEntityManagerFactory()。示例:

It is possible to specify the persistence unit (PU) name at runtime, but this is a parameter used in the creation of the EntityManagerFactory, not an individual EntityManager. See the Javadoc for the Persistence class method createEntityManagerFactory(). Example:

EntityManagerFactory emf = Persistence.createEntityManagerFactory(unitname);
EntityManager em = emf.createEntityManager();
// ...

我在非Java EE应用程序中执行此操作(使用Java 6 SE在Tomcat托管的Web应用程序中调用)但我不确定如何在容器管理的Java EE 6应用程序中执行相同的操作。这是可能的。

I do this in a non-Java EE application (using Java 6 SE calls in a Tomcat-hosted web app) but I'm not sure how you do the same thing in a container-managed Java EE 6 application. It is possible.

这篇关于当您不确定单位名称时,如何创建EntityManager?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-26 01:52