From b1e5780be620f6f33051e9083f0aa50e2b637647 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Tue, 23 Aug 2016 17:09:52 +0200 Subject: [PATCH] Please cherry-pick: - explicitly flush after persisting to get id number in entity set --- .../phone/JobsAdminContactPhoneSessionBean.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/java/org/mxchange/jcontacts/phone/JobsAdminContactPhoneSessionBean.java b/src/java/org/mxchange/jcontacts/phone/JobsAdminContactPhoneSessionBean.java index a1cccd8..31f565b 100644 --- a/src/java/org/mxchange/jcontacts/phone/JobsAdminContactPhoneSessionBean.java +++ b/src/java/org/mxchange/jcontacts/phone/JobsAdminContactPhoneSessionBean.java @@ -262,6 +262,9 @@ public class JobsAdminContactPhoneSessionBean extends BaseJobsDatabaseBean imple // Persist it this.getEntityManager().persist(faxNumber); + // Flush it + this.getEntityManager().flush(); + // Find contact Contact managedContact = this.getEntityManager().find(UserContact.class, contact.getContactId()); @@ -322,6 +325,9 @@ public class JobsAdminContactPhoneSessionBean extends BaseJobsDatabaseBean imple // Persist it this.getEntityManager().persist(landLineNumber); + // Flush it + this.getEntityManager().flush(); + // Find contact Contact managedContact = this.getEntityManager().find(UserContact.class, contact.getContactId()); @@ -376,6 +382,9 @@ public class JobsAdminContactPhoneSessionBean extends BaseJobsDatabaseBean imple // Persist it this.getEntityManager().persist(mobileNumber); + // Flush it + this.getEntityManager().flush(); + // Find contact Contact managedContact = this.getEntityManager().find(UserContact.class, contact.getContactId()); -- 2.39.5