Skip to content

Instantly share code, notes, and snippets.

@sirius2k
Created July 22, 2018 11:50
Show Gist options
  • Save sirius2k/ae45615fce85a5766ed4783be7b857b2 to your computer and use it in GitHub Desktop.
Save sirius2k/ae45615fce85a5766ed4783be7b857b2 to your computer and use it in GitHub Desktop.
Spring Data JPA Tracking Created and Last Modified Dates
@Entity
@EntityListeners(AuditingEntityListener.class)
public class Bar {
//...
@Column(name = "created_date", nullable = false, updatable = false)
@CreatedDate
private long createdDate;
@Column(name = "modified_date")
@LastModifiedDate
private long modifiedDate;
//...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment