Reputation: 1947
Hy,
I have a JPA entity which I get from database and this entity has a few associations which are retrieved too from database; these associated entities are eager retrieved. My questions is:
Thanks
Upvotes: 1
Views: 96
Reputation: 4643
Only associations which have cascade=CascadeType.DETACH
will be detached when you detach an Entity.
Upvotes: 1