hibernate - 3.6.0.Final joda - 1.4, как поддерживать прямую joda. DateTime в pojo для hibernate
, поэтому может быть session.saveOrUpdate(rateCodeId);
pojo
public class RateCodeId implements java.io.Serializable {
private int roomId;
private org.joda.Time.DateTime date;
}
hbm.xml
<key-property name="date" type="org.joda.time.contrib.hibernate.PersistentDateTime">
<column length="10" name="date" />
</key-property>
ОШИБКА:
org.hibernate.MappingException: Не удалось определить тип для: org.joda.time.contrib.hibernate.PersistentDateTime
И без "type =" ОШИБКА
java.lang.ClassCastException: org.joda.time.DateTime нельзя привести к java.util.Date