JAVA-10307:Fix Table ITEM not found issue

This commit is contained in:
anuragkumawat 2022-02-25 15:47:15 +05:30
parent d111a07fc6
commit 12c25ba2e3
3 changed files with 1 additions and 0 deletions

View File

@ -11,6 +11,7 @@
<property name="hibernate.connection.password"></property> <property name="hibernate.connection.password"></property>
<property name="hibernate.dialect">org.hibernate.dialect.H2Dialect</property> <property name="hibernate.dialect">org.hibernate.dialect.H2Dialect</property>
<property name="hibernate.hbm2ddl.auto">create-drop</property> <property name="hibernate.hbm2ddl.auto">create-drop</property>
<property name="hibernate.hbm2ddl.import_files">import-db.sql</property>
<property name="show_sql">false</property> <property name="show_sql">false</property>
<mapping resource="com/baeldung/hibernate/criteria/model/Item.hbm.xml" /> <mapping resource="com/baeldung/hibernate/criteria/model/Item.hbm.xml" />
</session-factory> </session-factory>