Created
April 20, 2020 16:21
-
-
Save MufidJamaluddin/25845e40113c7dff679e6fc35899a54b to your computer and use it in GitHub Desktop.
Penggunaan Hibernate Envers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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