spring集成hibernate由两种形式

1、继续使用Hibernate的映射文件*.hbm.xml

2、使用jpa形式的pojo对象, 去掉*.hbm.xml文件

一、继续使用Hibernate的映射文件*.hbm.xml

此时Spring的配置文件中的SeesionFactory需要使用org.springframework.orm.hibernate.LocalSessionFactoryBean

  1. <bean id="sessionFactory"
  2. class="org.springframework.orm.hibernate.LocalSessionFactoryBean">
  3. <property name="dataSource" ref="dataSource" />
  4. <property name="hibernateProperties">
  5. <props>
  6. <prop key="hibernate.dialect">org.hibernate.dialect.SQLServerDialect</prop>
  7. <prop key="hibernate.show_sql">true</prop>
  8. <prop key="hibernate.format_sql">true</prop>
  9. </props>
  10. </property>
  11. </bean>

LocalSessionFactoryBean可以用如下几个属性来寻找*hbm.xml文件

mappingResources、mappingLocations、mappingDirectoryLocations与mappingJarLocations

1、mappingResources:指定classpath下具体映射文件名

  1. /**
  2. * Set Hibernate mapping resources to be found in the class path,
  3. * like "example.hbm.xml" or "mypackage/example.hbm.xml".
  4. * Analogous to mapping entries in a Hibernate XML config file.
  5. * Alternative to the more generic setMappingLocations method.
  6. * <p>Can be used to add to mappings from a Hibernate XML config file,
  7. * or to specify all mappings locally.
  8. * @see #setMappingLocations
  9. * @see org.hibernate.cfg.Configuration#addResource
  10. */
  11. public void setMappingResources(String... mappingResources) {
  12. this.mappingResources = mappingResources;
  13. }

src根目录下的example.hbm.xml文件

  1. <property name="mappingResources">
  2. <value>example.hbm.xml </value>
  3. </property>

src/mypackage目录下的example.hbm.xml文件

  1. <property name="mappingResources">
  2. <value>mypackage/example.hbm.xml</value>
  3. </property>

2、mappingLocations,可以指定映射文件的路径,可以指定classpath路径下和其他文件夹下的映射文件

  1. /**
  2. * Set locations of Hibernate mapping files, for example as classpath
  3. * resource "classpath:example.hbm.xml". Supports any resource location
  4. * via Spring's resource abstraction, for example relative paths like
  5. * "WEB-INF/mappings/example.hbm.xml" when running in an application context.
  6. * <p>Can be used to add to mappings from a Hibernate XML config file,
  7. * or to specify all mappings locally.
  8. * @see org.hibernate.cfg.Configuration#addInputStream
  9. */
  10. public void setMappingLocations(Resource... mappingLocations) {
  11. this.mappingLocations = mappingLocations;
  12. }

指定WEB-INF/mappings目录下的example.hbm.xml映射文件文件

  1. <property name="mappingLocations">
  2. <value>WEB-INF/mappings/example.hbm.xml </value>
  3. </property>
  1. </pre><pre>

指定classpath下的example.hbm.xml映射文件

  1. <property name="mappingLocations">
  2. <value>classpath:example.hbm.xml </value>
  3. </property>

也可以使用*作为通配符

3、mappingDirectoryLocations,指定包含映射文件的文件夹的目录

  1. /**
  2. * Set locations of directories that contain Hibernate mapping resources,
  3. * like "WEB-INF/mappings".
  4. * <p>Can be used to add to mappings from a Hibernate XML config file,
  5. * or to specify all mappings locally.
  6. * @see org.hibernate.cfg.Configuration#addDirectory(java.io.File)
  7. */
  8. public void setMappingDirectoryLocations(Resource... mappingDirectoryLocations) {
  9. this.mappingDirectoryLocations = mappingDirectoryLocations;
  10. }

包含WEB-INF/mappings目录下的所有*hbm.xml映射文件

  1. <property name="mappingDirectoryLocations">
  2. <list>
  3. <value>WEB-INF/mappings</value>
  4. </list>
  5. </property>

也可以通过classpath来指出,此处包含classpath路径下的hbm包下的所有*.hbm.xml文件

  1. <property name="mappingDirectoryLocations">
  2. <list>
  3. <value>classpath:hbm/</value>
  4. </list>
  5. </property>

4、mappingJarLocations ,指定加载的映射文件在jar文件中

  1. /**
  2. * Set locations of jar files that contain Hibernate mapping resources,
  3. * like "WEB-INF/lib/example.hbm.jar".
  4. * <p>Can be used to add to mappings from a Hibernate XML config file,
  5. * or to specify all mappings locally.
  6. * @see org.hibernate.cfg.Configuration#addJar(java.io.File)
  7. */
  8. public void setMappingJarLocations(Resource... mappingJarLocations) {
  9. this.mappingJarLocations = mappingJarLocations;
  10. }

例如:

  1. <property name="mappingDirectoryLocations">
  2. <value>WEB-INF/lib/example.hbm.jar</value>
  3. </property>
  1. </pre><p></p><p><span style="line-height:30px"><span style="line-height:21px"><span style="font-family: FangSong_GB2312; font-size: 18px;"></span></span></span></p><p></p><p>二、使用jpa形式的pojo对象, 去掉*.hbm.xml文件</p><p>此时Spring的配置文件中的SeesionFactory需要使用<span style="color:rgb(255,0,0);">org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean</span></p><p>AnnotationSessionFactoryBean中查找jpa注解形式的pojo映射对象的属性有:annotatedClasses、packagesToScan</p><p>1、annotatedClasses:指定classpath下指定的注解映射实体类的类名</p><p><pre name="code" class="java">/**
  2. * Specify annotated classes, for which mappings will be read from
  3. * class-level annotation metadata.
  4. * @see org.hibernate.cfg.AnnotationConfiguration#addAnnotatedClass(Class)
  5. */
  6. public void setAnnotatedClasses(Class<?>... annotatedClasses) {
  7. this.annotatedClasses = annotatedClasses;
  8. }
  1. <property name="annotatedClasses"> <list> <value>com.anyview.entities.ClassTable</value> <value>com.anyview.entities.ClassStudentTable</value> </list> </property>

2、 packagesToScan指定映射文件的包名

  1. /**
  2. * Specify packages to search using Spring-based scanning for entity classes in
  3. * the classpath. This is an alternative to listing annotated classes explicitly.
  4. * <p>Default is none. Specify packages to search for autodetection of your entity
  5. * classes in the classpath. This is analogous to Spring's component-scan feature
  6. * ({@link org.springframework.context.annotation.ClassPathBeanDefinitionScanner}).
  7. */
  8. ublic void setPackagesToScan(String... packagesToScan) {
  9. this.packagesToScan = packagesToScan;
    1. <property name="packagesToScan" value="com/anyview/entities/"></property></strong></span>

Spring整合Hibernate之AnnotationSessionFactoryBean与LocalSessionFactoryBean的更多相关文章

  1. Spring框架学习(4)spring整合hibernate

    内容源自:spring整合hibernate    spring整合注解形式的hibernate 这里和上一部分学习一样用了模板模式, 将hibernate开发流程封装在ORM层提供的模板类Hiber ...

  2. Spring整合Hibernate报错:annotatedClasses is not writable or has an invalid setter method

    Spring 整合Hibernate时报错: org.springframework.beans.factory.BeanCreationException: Error creating bean ...

  3. 【Java EE 学习 53】【Spring学习第五天】【Spring整合Hibernate】【Spring整合Hibernate、Struts2】【问题:整合hibernate之后事务不能回滚】

    一.Spring整合Hibernate 1.如果一个DAO 类继承了HibernateDaoSupport,只需要在spring配置文件中注入SessionFactory就可以了:如果一个DAO类没有 ...

  4. spring整合hibernate的详细步骤

    Spring整合hibernate需要整合些什么? 由IOC容器来生成hibernate的sessionFactory. 让hibernate使用spring的声明式事务 整合步骤: 加入hibern ...

  5. spring整合hibernate

    spring整合hibernate包括三部分:hibernate的配置.hibernate核心对象交给spring管理.事务由AOP控制 好处: 由java代码进行配置,摆脱硬编码,连接数据库等信息更 ...

  6. Spring 整合 Hibernate

    Spring 整合 Hibernate •Spring 支持大多数流行的 ORM 框架, 包括 Hibernate JDO, TopLink, Ibatis 和 JPA. •Spring 对这些 OR ...

  7. 使用Spring整合Hibernate,并实现对数据表的增、删、改、查的功能

    1.1 问题 使用Spring整合Hibernate,并实现资费表的增.删.改.查. 1.2 方案 Spring整合Hibernate的步骤: 1.3 步骤 实现此案例需要按照如下步骤进行. 采用的环 ...

  8. Spring整合Hibernate详细步骤

    阅读目录 一.概述 二.整合步骤 回到顶部 一.概述 Spring整合Hibernate有什么好处? 1.由IOC容器来管理Hibernate的SessionFactory 2.让Hibernate使 ...

  9. SSH整合之spring整合hibernate

    SSH整合要导入的jar包: MySQL中创建数据库 create database ssh_db; ssh_db 一.spring整合hibernate带有配置文件hibernate.cfg.xml ...

随机推荐

  1. php重修

    阅读顺序: http://www.laruence.com/2008/08/11/147.html  深入浅出php http://www.laruence.com/2008/06/18/221.ht ...

  2. Microsoft SQL Server 博客目录

    基础概念篇 SQL Server排序规则 SQL SERVER 统计信息概述(Statistics) SQL SERVER 索引之聚集索引和非聚集索引的描述 Sql Server 索引之唯一索引和筛选 ...

  3. 吐个槽,对VB6.0 还有VBS 说ByeBye

    往事不堪回首,折腾了个把月的老系统,心中郁结,不吐不快.系统架构是ASP +VBS +VB6.0 + SQL Server2000, 第一个版本开发完成大概是在2000年.基本是处于交接无力,看代码就 ...

  4. web.xml中同一servlet/filter配置多个url-pattern

    转自:http://blog.sina.com.cn/s/blog_4c2c2a0c0100dh67.html 若你的servlet要多个地址,或你的filter需要过滤不同的url如有*.jsp,* ...

  5. WebStorm中将Project分享到GitHub时报“Error Running Git”错误的解决办法

    错误信息 Cannot run program "git.exe":CreateProcess error=2,系统找不到指定的文件. 解决办法 从错误信息就可以知道,WebSto ...

  6. ubuntu中禁用华硕S550C触摸屏的方法

    华硕S550C的触摸屏被我一不小心弄了一条裂缝,导致屏幕一直会莫名其妙自动进行点击,严重影响了使用.在windows 系统下通过FN+F7的快捷键可以直接禁用触摸屏,但是换成ubuntu 系统之后,快 ...

  7. N种内核注入DLL的思路及实现

    内核注入,技术古老但很实用.现在部分RK趋向无进程,玩的是SYS+DLL,有的无文件,全部存在于内存中.可能有部分人会说:"都进内核了.什么不能干?".是啊,要是内核中可以做包括R ...

  8. Linux学习笔记(9)Linux常用命令之关机重启命令

    (1)shutdown shutdown命令用于关机重启,其语法格式为: shutdown [选项] 时间 其中,-c选项表示取消前一个设置的shutdown命令,-h命令表示关机,-r命令表示重启 ...

  9. 初探YAML

    YAML何许物也?在XML泛滥的情况下,YAML的出现的确让人眼前一亮,在初步学习了YAML以后,粗略的总结了一下,拿出来和大家分享.[MindMap][参考文档]YAML Specification ...

  10. Spring Boot 集成MyBatis

    http://blog.csdn.net/isea533/article/details/50359390