hibernate.cfg.xml 1.5 KB

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE hibernate-configuration
  3. PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
  4. <hibernate-configuration>
  5. <session-factory>
  6. <mapping resource="magoffin/matt/ieat/domain/RecipeComment.hbm.xml"/>
  7. <mapping resource="magoffin/matt/ieat/domain/MealRecipe.hbm.xml"/>
  8. <mapping resource="magoffin/matt/ieat/domain/User.hbm.xml"/>
  9. <mapping resource="magoffin/matt/ieat/domain/Unit.hbm.xml"/>
  10. <mapping resource="magoffin/matt/ieat/domain/Ingredient.hbm.xml"/>
  11. <mapping resource="magoffin/matt/ieat/domain/Course.hbm.xml"/>
  12. <mapping resource="magoffin/matt/ieat/domain/Ethnicity.hbm.xml"/>
  13. <mapping resource="magoffin/matt/ieat/domain/RecipeRating.hbm.xml"/>
  14. <mapping resource="magoffin/matt/ieat/domain/RelationKind.hbm.xml"/>
  15. <mapping resource="magoffin/matt/ieat/domain/RecipeStep.hbm.xml"/>
  16. <mapping resource="magoffin/matt/ieat/domain/System.hbm.xml"/>
  17. <mapping resource="magoffin/matt/ieat/domain/Base.hbm.xml"/>
  18. <mapping resource="magoffin/matt/ieat/domain/Recipe.hbm.xml"/>
  19. <mapping resource="magoffin/matt/ieat/domain/RecipeIngredient.hbm.xml"/>
  20. <mapping resource="magoffin/matt/ieat/domain/PrepTime.hbm.xml"/>
  21. <mapping resource="magoffin/matt/ieat/domain/Difficulty.hbm.xml"/>
  22. <mapping resource="magoffin/matt/ieat/domain/RelatedRecipe.hbm.xml"/>
  23. <mapping resource="magoffin/matt/ieat/domain/Meal.hbm.xml"/>
  24. </session-factory>
  25. </hibernate-configuration>