2
Hello, how do I get the list of persisted objects before committing it in BD. Follow the example below:
Pessoa p = new Pessoa("Joao", 21);
Pessoa p2 = new Pessoa("Pedro", 17);
Pessoa p3 = new Pessoa("Maria", 32);
//Entendo que nesse momento os dados ainda não estão salvos no banco
//Preciso obter essa lista para alterar as propriedades de alguns objetos
manager.persist(p);
manager.persist(p2);
manager.persist(p3);
//Comitando para salvar no banco
manager.getTransation().begin();
manager.getTransation().commit();
Your objects are in the scope of the method, why do you need their list? If you need the id generated in persistence, the method
persiste
returns the id.– LeoCBS