Tagged Questions

5
votes
2answers
2k views

JPA EntityManager: Why use persist() over merge()?

EntityManager.merge() can insert new objects and update existing ones. Why would one want to use persist() (which can only create new objects)?
1
vote
1answer
39 views

JPA - saving changes without persist() invoked

Hi, we are using Toplink implementation of JPA + Spring + EJB. In one of our EJBs we have something like this: public void updateUser(long userId, String newName){ User u = em.get(User.class, …
0
votes
0answers
55 views

MFC: getting CPane state from registry

Hello all, I have an MFC question that can be demonstrated in the VisualStudioDemo example, though the issue is not exclusive to that sample application. My question is this: In the …
0
votes
1answer
83 views

Remote Seam Persistence

Hi. I have a button in a .xhtml file which calls a javascript function which calls a java function remotely (in jboss seam environment). That java function has an entityManager.persist(object). Do you …
0
votes
5answers
65 views

What do you do with a one-off piece of data that needs to be persisted?

Recently I've been requested to add on something for the administrator of a site where he can 'feature' something. For this discussion let's say it's a 'featured article'. So naturally we already …