Exception in thread "main" org.hibernate.Mappin...

      建立Hibernate项目后,在src文件夹下创建包test,在该包下建立测试类,命名为Test.java。运行该程序时(Java Application),报出如下错误:    

       Exception in thread "main" org.hibernate.MappingException: Unknown entity:org.model.Statisticsinfo

     

      解决办法:

      在hibernate.cfg.xml中加入实体Statisticsinfo的映射,即在文件加入

      <mapping resource="org/model/Statisticsinfo.hbm.xml"/>即可。

你可能感兴趣的:(Hibernate)