Ghanesoft
Ghanesoft

Reputation: 21

java.lang.ClassCastException: org.hibernate.type.FloatType cannot be cast to org.hibernate.type.VersionType

I have a problem to configure Hibernate in NetBeans 8.1 .

I have created :

and hibernateConfig :

and model.beans / mapping files :

enter image description here

Upvotes: 0

Views: 752

Answers (1)

shankarsh15
shankarsh15

Reputation: 1967

from the error mentioned it says,

ClassCastExcpetion : floattype cannot be cast to version type

please change field datatype mapped to @version from float to int.

Upvotes: 0

Related Questions