I\'m using Jodatime in my Play app, but currently having to do a bunch of converting back and forth from/to java.util.Date and java.sql.Time.
java.util.Date
java.sql.Time
Instead of putting the @Type annotation at each of your Joda properties you can add this in your jpa properties
@Type
#Hibernate config jadira.usertype.autoRegisterUserTypes=true
and it should work just fine.
ps. jadira-usertype-core.jar should be in your classpath.