JPA / OpenJPA 所有行中的值相同

发布于 2024-09-19 04:28:18 字数 432 浏览 7 评论 0原文

我在使用 OpenJPA 时遇到问题,

我尝试读取表中的所有行,但主键始终具有相同的值(值 = 0)!?!?!?

for (Object o : em.createQuery("select x from AnnouncementsEntry x")
                .getResultList()) {
            //alway returns "0" in every row
                long id = ((AnnouncementsEntry) o).getEntryId();

我的条目:

@Id
    @GeneratedValue(strategy=GenerationType.AUTO)
    private Long entryId;

I have a problem with OpenJPA

I try to read all rows from a table but the primary key has always a same value(value = 0)!?!?!?

for (Object o : em.createQuery("select x from AnnouncementsEntry x")
                .getResultList()) {
            //alway returns "0" in every row
                long id = ((AnnouncementsEntry) o).getEntryId();

my entry:

@Id
    @GeneratedValue(strategy=GenerationType.AUTO)
    private Long entryId;

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

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

发布评论

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

评论(1

梦情居士 2024-09-26 04:28:22

这已经很老了,但我相当确定问题在于您的实体是如何增强的。您使用的 Eclipse 插件很可能存在一些问题

对于遇到此问题的其他人,请查看 OpenJPA 增强文档

This is way old, but I'm fairly certain that the problem was how your Entities were enhanced. More than likely you used an eclipse plugin that has some problems.

To anyone else having this problem, please checkout the OpenJPA enhancement docs.

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