0

I know hibernate optimistic locking with version column works for concurrent updates. Does it works when records are deleted and re-inserted concurrently?

Sam
  • 131
  • 1
  • 5

1 Answers1

0

No it doesn't work when you delete record because it uses version field from the row which will not be available when you delete that.

cool
  • 1,746
  • 1
  • 14
  • 15