Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 461 Bytes

CreationTimestamp.md

File metadata and controls

19 lines (14 loc) · 461 Bytes

CreationTimestamp Annotation

Indicates that the annotated field should be automatically populated with the timestamp of entity creation.

Example usage:

public class ExampleEntity {
    @CreationTimestamp
    private OffsetDateTime createdAt;

    // Getter and setter methods
}

See Also