I have a problem with the mapping of Oracle Float double precision datatype to Java Double datatype. The hibernate schema validator seems to fail when the Java Double dataty
I had a case where my Oracle column type was NUMBER and the Java type was double.
NUMBER
double
Finally traced that it was down to settings
validate
just changed it to
update
and everything worked!