Students.hbm.xml文件存在;
配置文件hibernate.cfg.xml有加<mapping resource="Stdents.hbm.xml"/>
这个错误是生成表的映射文件没有找到引起的,相对于hibernate.cfg.xml文件来说,你写的<mapping resource="Stdents.hbm.xml"/>路径是找不到Students.hbm.xml文件的,建议使用绝对路径,改为<mapping resource="entity/Students.hbm.xmls"/>