How To Use Hibernate Soft Deletes In A Spring Boot Application
Description: This application is an example of using Hibernate soft deletes in a Spring Boot application.
Key points:
- define an
abstract
classBaseEntity
with a field nameddeleted
- the entities (e.g.,
Author
andBook
entities) that should take advantage of soft deletes should extendBaseEntity
- these entities should be marked with Hibernate,
@Where
annotation like this:@Where(clause = "deleted = false")
- these entities should be marked with Hibernate,
@SQLDelete
annotation to triggerUPDATE
SQLs in place ofDELETE
SQLs, as follows:@SQLDelete(sql = "UPDATE author SET deleted = true WHERE id = ?")
- for fetching all entities including those marked as deleted or for fetching only the entities marked as deleted we need to rely on SQL native queries