Skip to content

Instantly share code, notes, and snippets.

@fernandosilva
Created March 23, 2016 03:20
Show Gist options
  • Save fernandosilva/2490290dd72f73f48a2b to your computer and use it in GitHub Desktop.
Save fernandosilva/2490290dd72f73f48a2b to your computer and use it in GitHub Desktop.
Listener do Hibernate
@PrePersist
public void whenInsert() {
data = new Date();
}
@PreUpdate
public void whenUpdate() {
data = new Date();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment