2

我正在使用弹簧和休眠。我将映射位置指定为:

我的文件夹结构如下:

src/main/resources
.
...hibernate
    .
    .....hibernate2


<property name="mappingLocations" value="classpath:hibernate/*.hbm.xml" />

上面的属性只查看休眠文件夹,而不是查看子目录。我如何强制在子文件夹中查找 hbm 文件?

4

1 回答 1

4

插入通配符 * 如下

<property name="mappingLocations" value="classpath*:hibernate/**/*.hbm.xml" />
于 2012-10-11T12:18:31.323 回答