Skip to content

Instantly share code, notes, and snippets.

@gokman
Created February 3, 2017 11:19
Show Gist options
  • Select an option

  • Save gokman/161028f73ddebe70e23ee514b23e245f to your computer and use it in GitHub Desktop.

Select an option

Save gokman/161028f73ddebe70e23ee514b23e245f to your computer and use it in GitHub Desktop.
Spring Jpa Trigger
@Entity
public class User{
.
.
.
@PreUpdate
public void preUpdate(){
System.out.println("pre update executed");
}
@PrePersist
public void prePersist(){
System.out.println("pre persist executed");
}
.
.
.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment