What\'s going on here?
@Stateless
@LocalBean
public class AppointmentCommentDao {
public void delete(long appointmen
In your case merge is not needed, because ac is not deattached in any point between em.find and em.remove.
In general when entity is deattached, EntityManager's method merge takes entity as argument and returns managed instance. Entity given as argument does not transform to be attached. This is explained for example here: EntityManager.merge. You have to go for:
AppointmentComment toBeRemoved = em.merge(ac);
em.remove(toBeRemoved);
Try this:
entity = getEntityManager().getReference(AppointmentComment.class, entity.getId());
getEntityManager().remove(entity);