spring - hibernate load *.hbm.xml from classpath resource
问题 I have some hbm.xml files in classpath resource located in src/main/resources maven's folder. I used spring's LocalSessionFactoryBean to load these files with the following bean config: <bean id="hibernateSessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> <property name="dataSource" ref="dataSourceOracle"/> <property name="mappingResources"> <list> <value>mapping/SystemUser.hbm.xml</value> <value>mapping/SystemCredential.hbm.xml</value> <value>mapping