| Hi, Using a spring boot (2.1.0.RELEASE) app (hibernate 5.3.7) with:
# Enable auto registration of Jadira UserTypes
spring.jpa.properties.jadira.usertype.autoRegisterUserTypes=true
# Set the default currency for Joda Money used by Jadira
spring.jpa.properties.jadira.usertype.currencyCode=EUR
And Joda DateTime fields on Embedded classes: the automatic conversion to
org.jadira.usertype.dateandtime.joda.PersistentDateTime
does not work anymore (although it does for regular entities). On Embedded classes, you are forced to add the explicit converter manually:
@Type(type="org.jadira.usertype.dateandtime.joda.PersistentDateTime")
private DateTime customDateTime;
|