In my entities classes I use to define the temporal fields as follows:
@Temporal(TemporalType.TIMESTAMP)
@Column(name = "START_DATE")
private Date start;
In my oracle DB the columns mapped by those fields are of type TIMESTAMP.
What are the implications of this configurations:
Are my dates implicitily UTC dates ?
Does it mean I have to be careful on handling by myself Daylight saving time issues ?