From: Roland Häder Date: Wed, 20 May 2020 18:36:39 +0000 (+0200) Subject: Product-only: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=bfa676a54de51701436e94ec2963e8b524077e46;p=pizzaservice-ejb.git Product-only: - always set EntryUpdated in the managed (and merged) instance, as the copyFooData() methods do no longer copy timestamps Signed-off-by: Roland Häder --- diff --git a/src/java/org/mxchange/pizzaapplication/enterprise/product/BasePizzaProductEnterpriseBean.java b/src/java/org/mxchange/pizzaapplication/enterprise/product/BasePizzaProductEnterpriseBean.java index 59f79d2..cc0440d 100644 --- a/src/java/org/mxchange/pizzaapplication/enterprise/product/BasePizzaProductEnterpriseBean.java +++ b/src/java/org/mxchange/pizzaapplication/enterprise/product/BasePizzaProductEnterpriseBean.java @@ -142,9 +142,6 @@ public abstract class BasePizzaProductEnterpriseBean extends BasePizzaEnterprise throw new IllegalStateException(MessageFormat.format("detachedProduct.productId={0} is not valid.", detachedProduct.getProductId())); //NOI18N } - // Set updated timestamp - detachedProduct.setProductEntryUpdated(new Date()); - // Get product from it and find it final Product foundProduct = this.createManaged(detachedProduct); @@ -157,6 +154,12 @@ public abstract class BasePizzaProductEnterpriseBean extends BasePizzaEnterprise // Merge product instance final Product managedProduct = this.getEntityManager().merge(foundProduct); + // Should be there + assert (managedProduct instanceof Product) : "managedProduct is null"; //NOI18N + + // Set updated timestamp + managedProduct.setProductEntryUpdated(new Date()); + // Trace message this.getLoggerBeanLocal().logTrace(MessageFormat.format("mergeProductData: managedProduct={0} - EXIT!", managedProduct)); //NOI18N