According to another post regarding changing @Temporal(TemporalType.DATE) to @Temporal(TemporalType.TIMESTAMP). When must you do this for what types?
In my MySQL DDL I have the below defined that each maps to a JAVA DATE type in the reverse engineered POJO.
DDL
===
`Timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP,
`StartTime` time NOT NULL default ’00:00:00′,
Generated POJO
=============
private Date timestamp;
private Date startTime;
What is the correct Meta Data Tag for each type and required modification to that MyEclipse reverse engineers?