hibernate查询数据出现无法解析xml的错误
Posted sovagxa&静默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hibernate查询数据出现无法解析xml的错误相关的知识,希望对你有一定的参考价值。
xml中的class需要一个主键id,必须要有id。
<hibernate-mapping package="com.hibernate.user"> <class name="User" table="test"> <id name="id" type="int" column="id"> <generator class="native"/> </id> <property name="rootname" type="string" column="rootname" /> <property name="password" type="string" column="password" /> </class> </hibernate-mapping>
以上是关于hibernate查询数据出现无法解析xml的错误的主要内容,如果未能解决你的问题,请参考以下文章