Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用弹簧和休眠。我将映射位置指定为:
我的文件夹结构如下:
src/main/resources . ...hibernate . .....hibernate2 <property name="mappingLocations" value="classpath:hibernate/*.hbm.xml" />
上面的属性只查看休眠文件夹,而不是查看子目录。我如何强制在子文件夹中查找 hbm 文件?
插入通配符 * 如下
<property name="mappingLocations" value="classpath*:hibernate/**/*.hbm.xml" />