Found the problem i also got org.hibernate.HibernateException: Wrong column type ... Found: bit, expected: boolean on BooleanType in hibernate 4 they changed the Ctor to public BooleanType() { this( org.hibernate.type.descriptor.sql.BooleanTypeDescriptor.INSTANCE, BooleanTypeDescriptor.INSTANCE ); } instead of old versions public BooleanType() { ...
|