I am migrating from joda to java 8 , initially i had this as my entity type :
import org.joda.DateTime;
@Type (type=org.jadira.usertype.dateandtime.joda.PersistentDateTime)
private DateTime dateTime
I am migrating to ZonedDateTime now,
What should be my entity type ?
Should it be org.hibernate.type.ZonedDateTimeType?
searched a bit , could not find any satisfactory answers,
Any help is appreciated.