I am using hibernate JPA implementation in our code. I want to perform soft delete of entity using JPA. I know for soft delete, hibernate provides @SQLDelete
annotations. But I am looking for JPA specific solution. Is there any JPA specific solution for soft delete of entity?
Asked
Active
Viewed 739 times
4

Reena Upadhyay
- 1,977
- 20
- 35
-
Hope this will help http://stackoverflow.com/questions/19323557/handling-soft-deletes-with-spring-jpa – Ashish Sharma Mar 03 '16 at 13:24
-
This link, talks about hibernate specific solution. I am looking for JPA one. – Reena Upadhyay Mar 04 '16 at 11:45