Reputation: 347
I am having trouble finding how to map different type of fields for different DBs in a Spring Boot Application. Primarily, I would like to know how to map the MySQL Timestamp but it would be great if I can also find a link to the collection of mappings for every datatype in different DBs.
Upvotes: 3
Views: 4094
Reputation: 13111
The list of standard basic types you can find here.
TIMESTAMP
to the following Java 8 types:java.time.Instant
, java.time.LocalDateTime
, java.time.OffsetDateTime
and java.time.ZonedDateTime
.
java.util.Date
(see this):@Column(name = "`timestamp`")
@Temporal(TemporalType.TIMESTAMP)
private Date timestamp;
But the first approach is much more preferable.
Upvotes: 5