我的hibernate配置文件位于resources / hibernate目录下。 resources
diretory文件夹是源文件夹。当我在Spring配置中声明mappingResources
时:
<property name="mappingResources">
<list>
<value>classpath:hibernate/PojoA.hbm.xml</value>
</list>
</property>
我收到错误提到PojoA.hbm.xml不存在。我可以知道如何解决这个问题吗?
答案 0 :(得分:1)
试试这个
<property name="mappingResources">
<list>
<value>hibernate/PojoA.hbm.xml</value>
</list>
</property>