JPA默认持久化单元

发布于 2024-07-09 16:51:39 字数 77 浏览 7 评论 0原文

我收到异常“此部署中没有默认的持久性单元。” 我可以以某种方式将单位标记为默认单位吗?(我只有一个持久性单位,所以我不想通过名称来称呼它)

I get exception "There is no default persistence unit in this deployment." can I somehow mark unit as default?(I have only one persistence unit, so Id rather not call it by name)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

送君千里 2024-07-16 16:51:39

不可以,你必须直呼 PU 的名字。

No, you have to call PU's by name.

大姐,你呐 2024-07-16 16:51:39

您可能是通过代码来完成此操作,而不是让容器来管理它。 在这种情况下,您必须按名称指定。

我的单元测试代码有这个代码块来执行此操作。

@Before
public void createEntityManagerFactory() throws IOException {
    final Properties p = new Properties();
    p.load(getClass().getResourceAsStream("/inmemory.properties"));
    emf = Persistence.createEntityManagerFactory("default", p);
}

但是,我的应用程序代码如下所示。

/**
 * Injected persistence context.
 */
@PersistenceContext
private EntityManager em;

You are probably doing it through code rather than letting the container manage it. In which case you have to specify by name.

My unit test code has this code block to do this.

@Before
public void createEntityManagerFactory() throws IOException {
    final Properties p = new Properties();
    p.load(getClass().getResourceAsStream("/inmemory.properties"));
    emf = Persistence.createEntityManagerFactory("default", p);
}

However, my application code looks like this.

/**
 * Injected persistence context.
 */
@PersistenceContext
private EntityManager em;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文