JPA在持久化后不将数据插入到行中

发布于 2024-11-27 22:53:04 字数 1079 浏览 0 评论 0原文

我在我的实体中使用 ID 生成的值,

@Id
@TableGenerator(
    name="marcaTable",
    table="JPA_WXS_APP_SEQUENCE_GENERATOR",
    pkColumnName="GEN_KEY",
    valueColumnName="GEN_VALUE",
    pkColumnValue="MARCA_ID",
    allocationSize=1,
    initialValue=0)
@GeneratedValue(strategy=GenerationType.TABLE,generator="marcaTable")
public int getId() {
    return Id;
}

我使用表来保存 ID。

如果我执行此代码两次,则会失败,因为有重复的 ID (1 id)

    public static void main(String[] args) {
    EntityManagerFactory emf =
        Persistence.createEntityManagerFactory("ACoches");
    EntityManager em = emf.createEntityManager();
    EntityTransaction tx = em.getTransaction();

    tx.begin();

    marca nmarca2 = new marca();
    nmarca2.setNombre_marca("pepito");
        em.flush();
        em.persist(nmarca2);
        tx.commit();
        em.close();
        emf.close();
}

}

但是,如果我手动执行 marca 表的选择,它是空的,似乎 JPA 不会在我创建它们时将数据插入行中。坚持(nmarca2);

如果我手动删除 JPA_WXS_APP_SEQUENCE_GENERATOR 表并再次选择 marca 表,现在是的,我可以看到寄存器。

提前致谢!!!

I am using an ID generated value in my entity

@Id
@TableGenerator(
    name="marcaTable",
    table="JPA_WXS_APP_SEQUENCE_GENERATOR",
    pkColumnName="GEN_KEY",
    valueColumnName="GEN_VALUE",
    pkColumnValue="MARCA_ID",
    allocationSize=1,
    initialValue=0)
@GeneratedValue(strategy=GenerationType.TABLE,generator="marcaTable")
public int getId() {
    return Id;
}

I use a table to save the id.

If I execute this code twice its fail because there are duplicates ID (1 id)

    public static void main(String[] args) {
    EntityManagerFactory emf =
        Persistence.createEntityManagerFactory("ACoches");
    EntityManager em = emf.createEntityManager();
    EntityTransaction tx = em.getTransaction();

    tx.begin();

    marca nmarca2 = new marca();
    nmarca2.setNombre_marca("pepito");
        em.flush();
        em.persist(nmarca2);
        tx.commit();
        em.close();
        emf.close();
}

}

But if I manually execute a select of marca table it is empty, it seems that JPA dont insert the data in the row just when i make the em.persist(nmarca2);

If I delete the JPA_WXS_APP_SEQUENCE_GENERATOR table manually and I select again the marca table now yes I can see the register.

Thanks in advance!!!

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

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

发布评论

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

评论(1

烏雲後面有陽光 2024-12-04 22:53:04

persist() 只是注册要持久化的对象。直到commit()或flush()时才会插入。如果在 persist() 之后调用lush(),它将被插入。

不明白为什么你会得到重复的 id。打开最好的日志记录以查看正在执行的 SQL。

一个问题可能是您的initialValue=0,请尝试将其删除或更改为1。

persist() just registers the object to be persisted. It will not be inserted until commit() or flush(). If you call flush() after the persist() it will have been inserted.

Can't see why you would get a duplicate id. Turn logging on finest to see what SQL is being executed.

One issue may be your initialValue=0, try removing or changing it to 1.

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