Following Problem:
Relation: |Shop| --1--------n--> |Products|
So I have an Entity named shop that can have many products.
I developed a function called void addProductToShop(Shop shop, Product product);
It looks something like this:
public void addProductToShop(Shop shop, Product product)
{
entityManager = entityManagerFactory.createEntityManager();
entityManager.getTransaction().begin();
shop = entityManager.merge(shop);
shop.getProductList.add(product);
entityManager.getTransaction().commit();
entityManager.close();
}
Everything works fine and is written correctly to the database. The Problem is, that the two Entities are not updated in my Application code.
So after calling addProductToShop(shop, product); you have to update the two variables shop and product because they don't have the latest changes (because of callByValue).
But as consumer of this function I assume that my parameters are changed after the call and not only the database. How can I achieve this without requesting an update of shop and product after each function call.
Are there any best practices?
Thanks, Alex