I\'m working on my first simple Hibernate application. The crux of the problem is, I had renamed a member of persistent class (with apt changes to all other parts) and re-ru
Try <property name="hibernate.hbm2ddl.auto">create</property> instead of <property name="hbm2ddl.auto">create</property>
<property name="hibernate.hbm2ddl.auto">create</property>
<property name="hbm2ddl.auto">create</property>
Try specifying hibernate.hbm2ddl.auto=create instead of just hbm2ddl.auto=create.
hibernate.hbm2ddl.auto=create
hbm2ddl.auto=create
This is what the documentation uses.