I\'ve got a DAO that I used to load and save my domain objects using JPA. I finally managed to get the transaction stuff working, now I\'ve got another issue.
In my
public void remove(Object obj){ em.remove(em.merge(obj)); }
The above code is similar to that proposed by zawhtut