今天总结的hibernate异常。刚入门,所以异常比较简单

本文记录了作者在自学Hibernate过程中遇到的三个典型异常及其解决方案。包括找不到映射文件、XML元素声明错误以及映射异常等问题,并提供了具体的修改建议。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

author:heaven


今天自学一个下午的hibernate,所处理过的异常如下:

异常1:
org.hibernate.MappingNotFoundException: resource: com.heaven.hibernate not found

原因:

你配置出问题了吗,注意要<mapping

resource="com/heaven/hibernate/aa.hbm.xml"/>//com/heaven/hibernate/包名


异常2:
Caused by: org.xml.sax.SAXParseException: Element type "hibernate-mapping" must be

declared.

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>


在XXX.hbm.xml的DTD改成

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">


异常3:
Caused by: org.hibernate.MappingException: class User not found while looking for

property: id

Caused by: org.hibernate.InvalidMappingException: Could not parse mapping document from

resource com/heaven/hibernate/User.hbm.xml

Caused by: java.lang.ClassNotFoundException: User

这个可能因为我没在User.hbm.xml的 <hibernate-mapping package="com.heaven.hibernate">那里定

义包这个属性,所以抛出这写异常
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值