Spring中的mappingResources和mappingDirectoryLocations

这两个是有本质区别的,光看名字也能看出来,哈哈,好了,入正题:

mappingResources用于指定少量的hibernate配置文件像这样

 

<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>

 

看看这样就简单了吧,只要指定配置文件所在的文件夹,这样所要关联的配置文件就都关联上了,再也不用一个一个写出来了,好使吧!哈哈~~~

你可能感兴趣的:(spring,Web,Hibernate)