I\'m trying to use hibernate with ms sql server and have difficulties mapping the sql type datetimeoffset to java. If I try to set the mapping type in the reverse engineerin
Your can provide a custom Hibernate user type. For example by implementing org.hibernate.type.MutableType.
Refer Hibernate Reference for more information.