So far, my preference has been to always use EntityManager's merge() take care of both insert and update. But I have also noticed that merge performs an additional select queries before update/insert to ensure record does not already exists in the database.

Now that I am working on a project requiring extensive (bulk) inserts to the database. From a performance point of view does it make sense to use persist instead of merge in a scenario where I absolutely know that I am always creating a new instance of objects to be persisted?

link|improve this question

79% accept rate
feedback

2 Answers

up vote 4 down vote accepted

It's not a good idea using merge when a persist suffices. Merge does quite a lot more of work; the topic has been discussed here before, and this article explains in detail the differences, with some nice flow diagrams to make things clear.

link|improve this answer
feedback

I would definitely go with persist persist() if, as you said:

(...) I absolutely know that I am always creating a new instance of objects to be persisted (...)

That's what this method is all about - it will protect you in cases where the Entity already exists (and will rollback your transaction).

link|improve this answer
Is it a good coding practice to do something like : try { em.persist(xxx); } catch (RuntimeException re) { try { xxx = em.merge(xxx); } catch (Exception e) { throw e; } } – phewataal Dec 12 '11 at 19:18
Despite that catching RuntimeException is definitely not a good practice (but I'll assume you meant EntityExistsException) I wouldn't call it an universal good coding practice. It depends on your requirements. If the requirements says that object must be persisted and it must not exist before this action occurs - I would definitely not try to do merge after catching exception. Moreover, if you use JTA entity manager, your transaction will be already marked for rollback at this time. – Piotr Nowicki Dec 12 '11 at 22:16
can you please explain what do you mean by "Moreover, if you use JTA entity manager, your transaction will be already marked for rollback at this time"? I am using CMT for EJB3 and I was able to verify that as long as I eat the exception within a method boundary, no transaction is rolled back. – phewataal Jan 20 at 16:54
So what with this EntityExistsException and merging after persisting method? When persist() throws an RuntimException does it mean that entity has been added to persistence context , so EntityExistsException schould be thrown during merging? Or maybe EntityExistsException would not be thrown, because transaction has been rolled back due to RuntimeException and new context had been created? – Damian May 18 at 19:22
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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