mappingResources用于指定少量的hibernate配置文件像这样
mappingDirectoryLocations:批量导入
通过注解的方式:
<property name="mappingResources"> <list> <value>WEB-INF/conf/hibernate/cat.hbm.</value> <value>WEB-INF/conf/hibernate/dog.hbm.</value> . <!--..... --> </list> </property>
mappingDirectoryLocations:批量导入
<property name="mappingDirectoryLocations"> <list> <value>WEB-INF/conf/hibernate</value> </list> </property>
通过注解的方式:
<property name="annotatedClasses"> <list> <value>com.systop.common.core.dao.testmodel.TestDept</value> </list> </property>
通过注解扫描包的方式:
<property name="packagesToScan"> <list> <value>com.systop.common.core.dao.testmodel</value> </list> </property>