Cách tốt nhất để xóa mềm với Hibernate là sử dụng chú thích @SQLDelete trên các lớp của bạn.
đảm bảo ánh xạ của bạn được đặt thành xóa theo tầng
gọi session.delete (yourClass) sẽ đạt được xóa mềm của bạn
//used to overide the normal delete behavior
@SQLDelete(sql="UPDATE (table_name) SET deleted = '1' WHERE id = ?")
//optional Use this to exclude deleted element from get
@Where(clause="deleted <> '1'")
//OR (Filter may also be used if you need to load deleted items occasionally)
@FilterDef(name="ProductFilter",defaultCondition="deleted <> 1 ")