Hibernate映射位置指定?

时间:2012-10-11 11:34:58

标签: java spring hibernate

我正在使用spring和hibernate。我的映射位置指定为:

我的文件夹结构如下:

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


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

上面的属性只查看hibernate文件夹,而不是查看子文件。我怎么能强制在子文件夹中找到hbm文件?

1 个答案:

答案 0 :(得分:4)

插入通配符*,如下所示

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