From: Roland Häder Date: Tue, 23 Aug 2016 15:09:52 +0000 (+0200) Subject: Please cherry-pick: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b1e5780be620f6f33051e9083f0aa50e2b637647;p=jjobs-ejb.git Please cherry-pick: - explicitly flush after persisting to get id number in entity set --- 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());