From d6ed56cb977d62ccdf7e61ba026bfefbfe3ab844 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Tue, 23 Aug 2016 11:33:14 +0200 Subject: [PATCH] Please cherry-pick: - detachAllContactPhoneEntries() was a bad idea, beter do it the old way. - The returned instance was a managed instance that have been updated. First find it with find() then you have a managed instanced. Now simply update the fields you want and you are done. --- .../AddressbookContactSessionBean.java | 16 +- ...dressbookAdminContactPhoneSessionBean.java | 139 ++++++++---------- 2 files changed, 68 insertions(+), 87 deletions(-) diff --git a/src/java/org/mxchange/jcontacts/contact/AddressbookContactSessionBean.java b/src/java/org/mxchange/jcontacts/contact/AddressbookContactSessionBean.java index e7dc551..f904f20 100644 --- a/src/java/org/mxchange/jcontacts/contact/AddressbookContactSessionBean.java +++ b/src/java/org/mxchange/jcontacts/contact/AddressbookContactSessionBean.java @@ -17,7 +17,6 @@ package org.mxchange.jcontacts.contact; import java.text.MessageFormat; -import java.util.GregorianCalendar; import java.util.Iterator; import java.util.List; import java.util.Objects; @@ -281,20 +280,19 @@ public class AddressbookContactSessionBean extends BaseAddressbookDatabaseBean i throw new IllegalStateException(MessageFormat.format("contact.contactId={0} is not valid.", contact.getContactId())); //NOI18N } - // Set updated timestamp - contact.setContactUpdated(new GregorianCalendar()); - - // Detach all phone numbers - this.detachAllContactPhoneEntries(contact); + // Remove all referenced phone numbers + contact.setContactFaxNumber(null); + contact.setContactLandLineNumber(null); + contact.setContactMobileNumber(null); // Merge cellphone, land-line and fix - Contact detachedContact = this.mergeContactData(contact); + Contact managedContact = this.mergeContactData(contact); // Trace message - this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.updateContactData: detachedContact={1} - EXIT!", this.getClass().getSimpleName(), detachedContact)); //NOI18N + this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.updateContactData: managedContact={1} - EXIT!", this.getClass().getSimpleName(), managedContact)); //NOI18N // Return it - return detachedContact; + return managedContact; } @Override diff --git a/src/java/org/mxchange/jcontacts/phone/AddressbookAdminContactPhoneSessionBean.java b/src/java/org/mxchange/jcontacts/phone/AddressbookAdminContactPhoneSessionBean.java index e782f9c..7348f39 100644 --- a/src/java/org/mxchange/jcontacts/phone/AddressbookAdminContactPhoneSessionBean.java +++ b/src/java/org/mxchange/jcontacts/phone/AddressbookAdminContactPhoneSessionBean.java @@ -24,6 +24,7 @@ import javax.ejb.Stateless; import org.mxchange.addressbook.database.BaseAddressbookDatabaseBean; import org.mxchange.jcontacts.contact.Contact; import org.mxchange.jcontacts.contact.ContactSessionBeanRemote; +import org.mxchange.jcontacts.contact.UserContact; import org.mxchange.jphone.exceptions.PhoneNumberAlreadyLinkedException; import org.mxchange.jphone.exceptions.PhoneNumberNotLinkedException; import org.mxchange.jphone.phonenumbers.fax.DialableFaxNumber; @@ -93,20 +94,17 @@ public class AddressbookAdminContactPhoneSessionBean extends BaseAddressbookData throw new IllegalArgumentException(MessageFormat.format("faxNumber.phoneNumber={0} is not valid", faxNumber.getPhoneNumber())); //NOI18N } - // Set fax number in contact - contact.setContactFaxNumber(faxNumber); - - // Detach all phone entries before persisting it - this.detachAllContactPhoneEntries(contact); + // Find contact + Contact managedContact = this.getEntityManager().find(UserContact.class, contact.getContactId()); - // Update database - Contact updatedContact = this.contactBean.updateContactData(contact); + // Set fax number in contact + managedContact.setContactFaxNumber(faxNumber); // Trace message - this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.linkExistingFaxNumberWithContact: updatedContact={1} - EXIT!", this.getClass().getSimpleName(), updatedContact)); //NOI18N + this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.linkExistingFaxNumberWithContact: managedContact={1} - EXIT!", this.getClass().getSimpleName(), managedContact)); //NOI18N // Return it - return updatedContact; + return managedContact; } @Override @@ -153,20 +151,17 @@ public class AddressbookAdminContactPhoneSessionBean extends BaseAddressbookData throw new IllegalArgumentException(MessageFormat.format("landLineNumber.phoneNumber={0} is not valid", landLineNumber.getPhoneNumber())); //NOI18N } - // Set land-line number in contact - contact.setContactLandLineNumber(landLineNumber); - - // Detach all phone entries before persisting it - this.detachAllContactPhoneEntries(contact); + // Find contact + Contact managedContact = this.getEntityManager().find(UserContact.class, contact.getContactId()); - // Update database - Contact updatedContact = this.contactBean.updateContactData(contact); + // Set landline number in contact + managedContact.setContactLandLineNumber(landLineNumber); // Trace message - this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.linkExistingLandLineNumberWithContact: updatedContact={1} - EXIT!", this.getClass().getSimpleName(), updatedContact)); //NOI18N + this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.linkExistingLandLineNumberWithContact: managedContact={1} - EXIT!", this.getClass().getSimpleName(), managedContact)); //NOI18N // Return it - return updatedContact; + return managedContact; } @Override @@ -207,20 +202,17 @@ public class AddressbookAdminContactPhoneSessionBean extends BaseAddressbookData throw new IllegalArgumentException(MessageFormat.format("mobileNumber.mobileProvider.providerId={0} is not valid", mobileNumber.getMobileProvider().getProviderId())); //NOI18N } - // Set mobile number in contact - contact.setContactMobileNumber(mobileNumber); + // Find contact + Contact managedContact = this.getEntityManager().find(UserContact.class, contact.getContactId()); - // Detach all phone entries before persisting it - this.detachAllContactPhoneEntries(contact); - - // Update database - Contact updatedContact = this.contactBean.updateContactData(contact); + // Set landline number in contact + managedContact.setContactMobileNumber(mobileNumber); // Trace message - this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.linkExistingMobileNumberWithContact: updatedContact={1} - EXIT!", this.getClass().getSimpleName(), updatedContact)); //NOI18N + this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.linkExistingMobileNumberWithContact: managedContact={1} - EXIT!", this.getClass().getSimpleName(), managedContact)); //NOI18N // Return it - return updatedContact; + return managedContact; } @Override @@ -267,20 +259,20 @@ public class AddressbookAdminContactPhoneSessionBean extends BaseAddressbookData // Set created instance faxNumber.setPhoneEntryCreated(new GregorianCalendar()); - // Set fax number in contact - contact.setContactFaxNumber(faxNumber); + // Persist it + this.getEntityManager().persist(faxNumber); - // Detach all phone entries before persisting it - this.detachAllContactPhoneEntries(contact); + // Find contact + Contact managedContact = this.getEntityManager().find(UserContact.class, contact.getContactId()); - // Update database - Contact updatedContact = this.contactBean.updateContactData(contact); + // Set fax number in contact + managedContact.setContactFaxNumber(faxNumber); // Trace message - this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.linkNewFaxNumberWithContact: updatedContact={1} - EXIT!", this.getClass().getSimpleName(), updatedContact)); //NOI18N + this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.linkNewFaxNumberWithContact: managedContact={1} - EXIT!", this.getClass().getSimpleName(), managedContact)); //NOI18N // Return it - return updatedContact; + return managedContact; } @Override @@ -327,20 +319,20 @@ public class AddressbookAdminContactPhoneSessionBean extends BaseAddressbookData // Set created instance landLineNumber.setPhoneEntryCreated(new GregorianCalendar()); - // Set landLine number in contact - contact.setContactLandLineNumber(landLineNumber); + // Persist it + this.getEntityManager().persist(landLineNumber); - // Detach all phone entries before persisting it - this.detachAllContactPhoneEntries(contact); + // Find contact + Contact managedContact = this.getEntityManager().find(UserContact.class, contact.getContactId()); - // Update database - Contact updatedContact = this.contactBean.updateContactData(contact); + // Set land-line number in contact + managedContact.setContactLandLineNumber(landLineNumber); // Trace message - this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.linkNewLandLineNumberWithContact: updatedContact={1} - EXIT!", this.getClass().getSimpleName(), updatedContact)); //NOI18N + this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.linkNewLandLineNumberWithContact: managedContact={1} - EXIT!", this.getClass().getSimpleName(), managedContact)); //NOI18N // Return it - return updatedContact; + return managedContact; } @Override @@ -381,20 +373,20 @@ public class AddressbookAdminContactPhoneSessionBean extends BaseAddressbookData // Set created instance mobileNumber.setPhoneEntryCreated(new GregorianCalendar()); - // Set mobile number in contact - contact.setContactMobileNumber(mobileNumber); + // Persist it + this.getEntityManager().persist(mobileNumber); - // Detach all phone entries before persisting it - this.detachAllContactPhoneEntries(contact); + // Find contact + Contact managedContact = this.getEntityManager().find(UserContact.class, contact.getContactId()); - // Update database - Contact updatedContact = this.contactBean.updateContactData(contact); + // Set land-line number in contact + managedContact.setContactMobileNumber(mobileNumber); // Trace message - this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.linkNewMobileNumberWithContact: updatedContact={1} - EXIT!", this.getClass().getSimpleName(), updatedContact)); //NOI18N + this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.linkNewMobileNumberWithContact: managedContact={1} - EXIT!", this.getClass().getSimpleName(), managedContact)); //NOI18N // Return it - return updatedContact; + return managedContact; } @Override @@ -426,20 +418,17 @@ public class AddressbookAdminContactPhoneSessionBean extends BaseAddressbookData throw new IllegalArgumentException(MessageFormat.format("contact.contactFaxNumber.phoneId={0} and faxNumber.phoneId={1} are not the same.", contact.getContactFaxNumber().getPhoneId(), faxNumber.getPhoneId())); //NOI18N } - // Remove it from contact - contact.setContactFaxNumber(null); - - // Detach all phone entries before persisting it - this.detachAllContactPhoneEntries(contact); + // Find contact + Contact managedContact = this.getEntityManager().find(UserContact.class, contact.getContactId()); - // Update database - Contact updatedContact = this.contactBean.updateContactData(contact); + // Remove it from contact + managedContact.setContactFaxNumber(null); // Trace message - this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.unlinkFaxDataFromContact: updatedContact={1} - EXIT!", this.getClass().getSimpleName(), updatedContact)); //NOI18N + this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.unlinkFaxDataFromContact: managedContact={1} - EXIT!", this.getClass().getSimpleName(), managedContact)); //NOI18N // Return it - return updatedContact; + return managedContact; } @Override @@ -471,20 +460,17 @@ public class AddressbookAdminContactPhoneSessionBean extends BaseAddressbookData throw new IllegalArgumentException(MessageFormat.format("contact.contactLandLineNumber.phoneId={0} and landLineNumber.phoneId={1} are not the same.", contact.getContactLandLineNumber().getPhoneId(), landLineNumber.getPhoneId())); //NOI18N } - // Remove it from contact - contact.setContactLandLineNumber(null); - - // Detach all phone entries before persisting it - this.detachAllContactPhoneEntries(contact); + // Find contact + Contact managedContact = this.getEntityManager().find(UserContact.class, contact.getContactId()); - // Update database - Contact updatedContact = this.contactBean.updateContactData(contact); + // Remove it from contact + managedContact.setContactLandLineNumber(null); // Trace message - this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.unlinkLandLineDataFromContact: updatedContact={1} - EXIT!", this.getClass().getSimpleName(), updatedContact)); //NOI18N + this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.unlinkLandLineDataFromContact: managedContact={1} - EXIT!", this.getClass().getSimpleName(), managedContact)); //NOI18N // Return it - return updatedContact; + return managedContact; } @Override @@ -516,20 +502,17 @@ public class AddressbookAdminContactPhoneSessionBean extends BaseAddressbookData throw new IllegalArgumentException(MessageFormat.format("contact.contactMobileNumber.phoneId={0} and mobileNumber.phoneId={1} are not the same.", contact.getContactMobileNumber().getPhoneId(), mobileNumber.getPhoneId())); //NOI18N } - // Remove it from contact - contact.setContactMobileNumber(null); - - // Detach all phone entries before persisting it - this.detachAllContactPhoneEntries(contact); + // Find contact + Contact managedContact = this.getEntityManager().find(UserContact.class, contact.getContactId()); - // Update database - Contact updatedContact = this.contactBean.updateContactData(contact); + // Remove it from contact + managedContact.setContactLandLineNumber(null); // Trace message - this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.unlinkMobileDataFromContact: updatedContact={1} - EXIT!", this.getClass().getSimpleName(), updatedContact)); //NOI18N + this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.unlinkMobileDataFromContact: managedContact={1} - EXIT!", this.getClass().getSimpleName(), managedContact)); //NOI18N // Return it - return updatedContact; + return managedContact; } } -- 2.39.2