Problem:
Hibernate Tool While reverse engineering
Hibernate Tool While reverse engineering
Reason for this problem: In one of my table there was a field named version. Which Hibernate tool treated as field version and try to cast the same and it throws an exception because the type of the field was not what hibernate tool was expecting.
Solution:
Open the hbm configuration file for corresponding table and change the configuration of that field from <version> to <property> .
Open the hbm configuration file for corresponding table and change the configuration of that field from <version> to <property> .