Skip to content

Instantly share code, notes, and snippets.

@MufidJamaluddin
Created April 20, 2020 16:21
Show Gist options
  • Save MufidJamaluddin/25845e40113c7dff679e6fc35899a54b to your computer and use it in GitHub Desktop.
Save MufidJamaluddin/25845e40113c7dff679e6fc35899a54b to your computer and use it in GitHub Desktop.
Penggunaan Hibernate Envers
@Entity
@Audited
class Student extends Serializable
{
@Version
private Integer version;
String NISN;
String fullName;
Float GPA;
// Getter and Setter
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment