假設在這裏我指定了一個特定的test.hbm.xml文件。相反,我想加載我的包中可用的所有hbm.xml文件。我有很多hbm.xml映射文件。 Inastead指定他們每個人,我想加載所有的人。怎麼做?是否有可能通過hibernate.cfg.xml文件加載它們?如何在hibernate中加載hibernate.cfg.xml中的所有xml映射文件?
hibernate-configuration>
<session-factory>
<property name="hibernate.bytecode.use_reflection_optimizer">false</property>
<property name="hibernate.connection.driver_class">org.h2.Driver</property>
<property name="hibernate.connection.password"></property>
<property name="hibernate.connection.url">jdbc:h2:mem:dbUnitTest;DB_CLOSE_DELAY=-1;INIT=CREATE SCHEMA IF NOT EXISTS SFMFG\;SET SCHEMA SFMFG</property>
<property name="hibernate.connection.username">sa</property>
<property name="hibernate.dialect">org.hibernate.dialect.H2Dialect</property>
<property name="cache.provider_class">org.hibernate.cache.EhCacheProvider</property>
<property name="hibernate.cache.use_second_level_cache">true</property>
<mapping resource="test.hbm.xml"/>
</session-factory>
</hibernate-configuration>