Tagged Questions

1
vote
1answer
656 views

JPA - saving changes without persist() invoked

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, ...