hibernate xxx is not mapped 错误原因及解决方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hibernate xxx is not mapped 错误原因及解决方法相关的知识,希望对你有一定的参考价值。

错误:

“hibernate xxx is not mapped”

原因:

xxx.hbm.xml文件没有发布到target相应目录中。

解决方法:

pom.xml中,节点内添加如下代码:

      <sourceDirectory>src/main/java</sourceDirectory>
      <resources>
          <resource>
              <directory>src/main/java</directory>
              <excludes>
                  <exclude>**/*.java</exclude>
              </excludes>
          </resource>
      </resources>

 

解释:

将src/main/java设置为sourceDirectory和resourceDirectory。
xml文件属于resource,只设置为sourceDirectory不会拷贝xml文件。

转自:http://www.lvhongqiang.com/blog427.html


以上是关于hibernate xxx is not mapped 错误原因及解决方法的主要内容,如果未能解决你的问题,请参考以下文章

错误笔记之Hibernate出现xxx is not mapped[from Xxx where ...]的原因排查

实体类和数据表的映射异常(XXX is not mapping[ ])

XXX is not mapped

SpringData : xxx_xxx is not mapped

SSH框架中hibernate 出现 user is not mapped 问题

Hibernate 中出现 users is not mapped 问题