Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

2 Answers

I got it.

My mistake was that I should first change the entities from the parameters and then do a merge...

So the parameters have the same state as the merged entities have.

Little error in reasoning...

Regards, Alex

share|improve this answer

I think entityManager.refresh(Object) is what you need to call for both shop and product.

share|improve this answer
How should I use refresh in my code? I can not call refresh on the two parameters because they are not managed. I also do not get why persist() updates the object and merge() doesn't. Could someone suggest a solution where I input theses parameters do the changes on the database and have them updated for the caller of this function? – Subby Aug 9 '12 at 7:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.