I have a spring 4 app where I\'m trying to delete an instance of an entity from my database. I have the following entity:
@Entity public class Token impleme
I had the same problem
Perhaps your UserAccount entity has an @OneToMany with Cascade on some attribute.
I've just remove the cascade, than it could persist when deleting...