hibernate create AuxiliaryDatabaseObject with annotation

Viewed 67
1 Answers

Hibernate Annotations does not need mapping *.hbm.xml file. Hence, you need to add the auxiliary objects programmatically.

The database object in the given link has 3 things:

  1. Create
  2. Drop
  3. Dialect

enter image description here

Related