我们如何获得JPA EntityManager Flush工作
2022-09-02 13:11:47
我的问题是为什么冲洗不起作用:
public void ejbService(){
Customer c = em.find(Customer.class,1);
c.setName("newName");
em.flush();
//at this point when I query mysql table I can not see "newName"
thread.sleep(10000);
c.setName("anotherName");
}
完成方法后,我在数据库中看到“otherName”,我也用em.find(Customer.class,1,Lock.None)检查它;但仍然不工作
断续器