首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

java MappingException提示Association references un地图ped class异常的解决办法

2013-09-11 
java MappingException提示Association references unmapped class错误的解决方法出现如下错误信息时Cause

java MappingException提示Association references unmapped class错误的解决方法

出现如下错误信息时

Caused by:
org.hibernate.MappingException: Association references unmappedclass: SubjectChapter(SubjectChapter为出错的类)

从错误提示信息可知是有一个POJO对象(这里是SubjectChapter)没有映射到。但是发现自己已经写了相关的xml映射文件。

这时可以查看Hibernate.cfg.xml文件里有没有加入这个POJO的映射文件:

<mapping resource="com/xx/entity/xx.hbm.xml"/>或者查看该POJO对象的映射文件有没有写错,包括类路径和基本的属性映射。如果没有错再查看关联到了该POJO对象的映射文件中,该POJO对象的类路径有没有写错。如下面的例子引起了该错误:<hibernate-mapping>        <class name="com.exam.entity.Subject" table="exam_subject">                <id name="subjectName" column="subject_name"></id>                <many-to-one name="subjectType"  column="subject_type_id" cascade="all"/>                     <set name="subjectChapter" inverse="true">                        <key column="subject_id"/>                        <one-to-many class="SubjectChapter"/>                </set> </class></hibernate-mapping>?这里发现原来是set标签里的one-to-many的类路径没有写完整,修改添加完整的类路径:<one-to-many class="com.exam.entity.SubjectChapter"/>如果再不行的话,也将many-to-one的类路径改成完整的类路径

我的异常网推荐解决方案:org.hibernate.MappingException: Association references unmapped class,http://www.myexception.cn/j2ee/326371.html

热点排行