JPA在持久化后不将数据插入到行中
我在我的实体中使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.