当前位置: 代码迷 >> 综合 >> org.hibernate.MappingNotFoundException: resource: entity.Students.hbm.xml not found
  详细解决方案

org.hibernate.MappingNotFoundException: resource: entity.Students.hbm.xml not found

热度:15   发布时间:2023-10-19 05:52:46.0

org.hibernate.MappingNotFoundException: resource: entity.Students.hbm.xml not found


这个错误很明了就是entity.Students.hbm.xml 这个文件找不到

hibernate的配置文件里面我是这么写的 <mapping resource="entity.Students.hbm.xml" />


没毛病 包名啥都对 我直接考过来的



然后解决办法   <mapping resource="entity/Students.hbm.xml" />   把包名后面的.换成/ 就可以了

  相关解决方案