mappingDirectoryLocations/mappingJarLocations/mappingResources/mappingLocati

阅读更多
由于spring对hibernate配置文件hibernate.cfg.xml的集成相当好 
 
LocalSessionFactoryBean有好几个属性用来查找hibernate映射文件:

mappingResources、mappingLocations、mappingDirectoryLocations、mappingJarLocations
他们的区别:
1. mappingResources:指定classpath下具体映射文件名
 
    petclinic.hbm.xml  
 
2. mappingLocations:可以指定任何文件路径,并且可以指定前缀:classpath、file等
 
    /WEB-INF/petclinic.hbm.xml  
 
 
    classpath:/com/company/domain/petclinic.hbm.xml  
 
也可以用通配符指定,'*'指定一个文件(路径)名,'**'指定多个文件(路径)名,例如:
 
    classpath:/com/company/domainmaps/*.hbm.xml  
 
上面的配置是在com/company/domain包下任何maps路径下的hbm.xml文件都被加载为映射文件

3. mappingDirectoryLocations:指定映射的文件路径 

  
  
     WEB-INF/HibernateMappings
  
也可以通过classpath来指出

  
  classpath:/XXX/package/
  
4. mappingJarLocations:指定加载的映射文件在jar文件中

你可能感兴趣的:(hibernate,spring,java)