79078185

Date: 2024-10-11 12:22:17
Score: 0.5
Natty:
Report link

This is because Hibernate doesn't know about your WaDAO entity. You have to register it with Configuration.addAnnotatedClass

configuration.addAnnotatedClass(WaDAO.class);

And by the way, the Data Access Object (DAO) pattern in Hibernate is implemented by the Session/EntityManager object.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Andrey Smelik