org.hibernate.MappingException: Unknown entity: annotations.Users

前端 未结 19 1620
情歌与酒
情歌与酒 2020-12-01 07:11

Consider the hierarchy :

\"enter

And the following classes and xml :

19条回答
  •  佛祖请我去吃肉
    2020-12-01 08:05

    Define the Entity class in Hibernate.cfg.xml

    
    

    While creating the sessionFactory object Load the Configuration file Like

    SessionFactory factory = new AnnotationConfiguration().configure("hibernate.cfg.xml").buildSessionFactory();
    

提交回复
热议问题