生成表結構出錯,org.hibernate.MappingNotFoundException: resource: entity.Students.hbm.xml not found at org.hibernate.cfg.Configuration.addResource(Configuration.java:738) at org.hibernate.cfg.Configuration.parseMappingElement(Configuration.java:2188) at org.hi
Students.hbm.xml文件存在;
配置文件hibernate.cfg.xml有加<mapping resource="Stdents.hbm.xml"/>
2017-04-06
這個錯誤是生成表的映射文件沒有找到引起的,相對于hibernate.cfg.xml文件來說,你寫的<mapping resource="Stdents.hbm.xml"/>路徑是找不到Students.hbm.xml文件的,建議使用絕對路徑,改為<mapping resource="entity/Students.hbm.xmls"/>