2013-02-18 67 views
0

我的hibernate配置文件位于resources/hibernate目录文件夹下。 resources diretory文件夹是源文件夹。当我在Spring配置声明mappingResources这样的:mappingResources找不到映射文件

<property name="mappingResources"> 
    <list> 
     <value>classpath:hibernate/PojoA.hbm.xml</value> 
    </list> 
</property> 

我得到了PojoA.hbm.xml不存在错误提。我可以知道这可以解决吗?

回答

1

试试这个

<property name="mappingResources"> 
    <list> 
     <value>hibernate/PojoA.hbm.xml</value> 
    </list> 
</property>