Database schema has column of type Timestamp .
Java POJO has corresponding property defined as java.util.Calendar
Result Map is defined as
<resultMap class="Job" id="JobResult">
<result column="STIME" jdbcType="TIMESTAMP" javaType="java.util.Calendar"
property="sTime" />
</resultMap>
I understand, I would have to define typeHandler to convert jdbc type to java
Calendar.
I am wondering what should I define jdbcType is my sql map, should it be
TimeStamp or should it be of type date. What would be the better?
Thanks,
Petr