首页 > 代码库 > hibernate xxx is not mapped 错误原因及解决方法

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 错误原因及解决方法