Perhaps I read somewhere that:
- Hibernate does not write to the database if the entity to be saved does not have any changes in its constant state in the database.
- Hibernate uses the equals () object to determine if it contains any changes in its state.
Can anyone confirm or deny them?
Also, is any of them applicable to the JPA specification?
source
share