Resultados da pesquisa a pedido "entitymanager"

1 a resposta

como podemos obter o trabalho JPA EntityManager Flush

minha pergunta é por que flush não funciona: 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); ...