Skip to content

Instantly share code, notes, and snippets.

@TopekoX
Last active January 19, 2025 02:01
Show Gist options
  • Save TopekoX/e216e5b117850432fae0860e3bd89f26 to your computer and use it in GitHub Desktop.
Save TopekoX/e216e5b117850432fae0860e3bd89f26 to your computer and use it in GitHub Desktop.
Create Timestamp Hibernate Annotation

Create Timestamp by Date Time

@CreationTimestamp
@Column(updatable = false, name = "create_time")
private LocalDateTime createAt;
	
@UpdateTimestamp
@Column(name = "update_time")
private LocalDateTime updateAt;

Create Timestamp by Date

@CreationTimestamp
@Column(updatable = false, name = "create_time")
private LocalDate createAt;
	
@UpdateTimestamp
@Column(name = "update_time")
private LocalDate updateAt;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment