Hibernate是一款ORM关系映射框架+Spring是结合第三方插件的大杂烩,Hibernate+Spring整合开发效率大大提升。

整合开发步骤如下:

第一步:导入架包:

1、Hibernate基础包+Spring基础包(AOP代理包和cglib...)

第二步:在spring配置文件中配置datasource(数据库连接信息要么写在hibernate.cfg.xml中;要么写在datasource中)

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:aop="http://www.springframework.org/schema/aop" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-2.5.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-2.5.xsd"> <!-- 设置类扫描器;自动装配Bean -->
<context:component-scan base-package="com.msit.ssh.sh" /> <!-- 引入外部属性文件 -->
<bean
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location" value="classpath:jdbc.properties"></property>
</bean> <!-- 配置数据源 -->
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
<!-- 配置数据源信息 -->
<property name="url">
<value>${connection.url}</value>
</property>
<property name="driverClassName">
<value>${connection.driver_class}</value>
</property>
<property name="username">
<value>${connection.username}</value>
</property>
<property name="password">
<value>${connection.password}</value>
</property>
<!-- 最大连接数 -->
<property name="maxActive">
<value>${jdbc.maxactive}</value>
</property>
<!-- 最大空闲数 -->
<property name="maxIdle">
<value>${jdbc.maxidle}</value>
</property>
<!-- 最小空闲数 -->
<property name="minIdle">
<value>${jdbc.minidle}</value>
</property>
</bean> <!-- sessionFactory(管理hibernate sessionfactory) -->
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<!-- 注入数据源 -->
<property name="dataSource" ref="dataSource" />
<!-- 第一种方式:引入hibernate.cfg.xml -->
<property name="configLocation" value="classpath:hibernate.cfg.xml"></property> <!-- 第二种方式:所有的hibernate配置配置在spring中 --> <!-- 配置映射文件 -->
<!--
<property name="mappingDirectoryLocations">
<list>
<value>com/msit/ssh/sh/entity/User.hbm.xml</value>
</list>
</property> --> <!-- 配置其他选项 -->
<!-- <property name="hibernateProperties">
<props>
<prop key=""></prop>
<prop key="show_sql">true</prop>
<prop key="hbm2ddl.auto">update</prop>
</props>
</property> -->
</bean> <!-- 配置hibernate事务管理器 -->
<bean id="transactionManager"
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<!-- 注入sessionFactory -->
<property name="sessionFactory" ref="sessionFactory" />
</bean> <!-- 事务通知 -->
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<!-- 配置哪些方法需要用到事务;哪些方法不需要事务 -->
<tx:method name="*" />
<tx:method name="get*" propagation="NOT_SUPPORTED" />
</tx:attributes>
</tx:advice> <!-- 配置aop -->
<aop:config>
<!-- 配置切入点 -->
<aop:pointcut id="txPointcut"
expression="execution(* com.msit.ssh.sh.service.impl.*.*(..))" />
<!-- 配置事务通知 -->
<aop:advisor advice-ref="txAdvice" pointcut-ref="txPointcut" />
</aop:config> <!-- <bean class="org.springframework.orm.hibernate3.HibernateTemplate">
<property name="sessionFactory" ref="sessionFactory"></property></bean> --> <!-- <bean id="hibernatedaosuppert"
class="org.springframework.orm.hibernate3.support.HibernateDaoSupport"
abstract="true">
<property name="sessionFactory" ref="sessionFactory"></property>
</bean> <bean id="userdao" class="com.msit.ssh.sh.dao.impl.UserDaoImpl"
parent="hibernatedaosuppert">
</bean> --> </beans>

hibernate.cfg.xml

<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> <hibernate-configuration>
<session-factory> <!-- 数据库连接信息 -->
<!-- <property name="connection.url">jdbc:oracle:thin:@localhost:1521:orcl</property>
<property name="connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
<property name="connection.username">db2</property>
<property name="connection.password">db2</property> --> <property name="hibernate.dialect">org.hibernate.dialect.OracleDialect</property> <!-- 其他配置 -->
<property name="show_sql">true</property>
<property name="hbm2ddl.auto">update</property>
<mapping resource="com/msit/ssh/sh/entity/User.hbm.xml"/> <!-- <class-cache
class="org.hibernate.test.legacy.Simple"
region="Simple"
usage="read-write"/> -->
</session-factory>
</hibernate-configuration>

3、配置sessionfactory(hibernate交给sprig管理)

里边注入数据源(datasource);再把hibernate配置文件引入进来
或者hibernate所有配置都写在sessionfactory中(舍弃了hibernate配置文件) <!-- sessionFactory(管理hibernate sessionfactory) -->
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<!-- 注入数据源 -->
<property name="dataSource" ref="dataSource" />
<!-- 引入hibernate.cfg.xml -->
<property name="configLocation" value="classpath:hibernate.cfg.xml"></property>
</bean>

4、dao层继承HibernateDaoSuppert(抽象类)(不能用注解);必须要标明abstract="true"

如果使用此方式:

        <bean id="hibernatedaosuppert"
class="org.springframework.orm.hibernate3.support.HibernateDaoSupport"
abstract="true">
//将sessionFactory注入给HibernateDaoSuppert
<property name="sessionFactory" ref="sessionFactory"></property>
</bean> //dao层Bean必须配置parent="hibernatedaosuppert" <bean id="userdao" class="com.msit.ssh.sh.dao.impl.UserDaoImpl"
parent="hibernatedaosuppert"> </bean> 还想用注解怎么办?
//编写一个超类继承HibernateDaoSuppert
public class BaseHibernateDaoSuppert extends HibernateDaoSupport{ @Resource
//注入sessionFactory
public void setMySessionFactory(SessionFactory sessionFactory){
this.setSessionFactory(sessionFactory);
} } //dao层就继承超类
@Repository("userdao")
public class UserDaoImpl extends BaseHibernateDaoSuppert implements IUserDao
您可以通过点击 右下角 的按钮 来对文章内容作出评价, 也可以通过左下方的 关注按钮 来关注我的博客的最新动态。 

如果文章内容对您有帮助, 不要忘记点击右下角的 推荐按钮 来支持一下哦   

如果您对文章内容有任何疑问, 可以通过评论或发邮件的方式联系我: 2276292708@qq.com

如果需要转载,请注明出处,谢谢!!

Hibernate+Spring整合开发步骤的更多相关文章

  1. Struts 2 + Hibernate + Spring 整合要点

    Struts 2 和 Spring 的功能有重合,因此有必要说明下,整合中分别使用了两种框架的哪些技术. Struts 2 使用功能点: 1.拦截器.一处是对非登录用户购物进行拦截,一处是对文件上传的 ...

  2. 开发步骤Dubbo、spring mvc、springboot、SSM整合开发步骤

    一.Dubbo开发步骤: 链接:https://pan.baidu.com/s/1pMPO1kf 密码:9zaa 第一: 1.创建consumer工程2.在pom.xml文件下添加配置3.添加appl ...

  3. Spring整合CXF步骤,Spring实现webService,spring整合WebService

    Spring整合CXF步骤 Spring实现webService, spring整合WebService >>>>>>>>>>>> ...

  4. JAX-RS和 Spring 整合开发

    JAX-RS 和 和 Spring 整合开发 1.建立maven项目 2.导入maven坐标 <dependencies> <!-- cxf 进行rs开发 必须导入 --> & ...

  5. Struts2+Hibernate+Spring 整合示例

    转自:https://blog.csdn.net/tkd03072010/article/details/7468769 Struts2+Hibernate+Spring 整合示例 Spring整合S ...

  6. spring整合mybatis步骤分析

    1.spring配置datasource bean的时候,不同的数据库连接方式有有不同的datasource实现类. 比如采用c3p0数据库连接池,要用c3p0的datasource实现类 com.m ...

  7. Struts2+Hibernate+Spring 整合示例[转]

    原文 http://blog.csdn.net/tkd03072010/article/details/7468769 Spring整合Struts2.Hibernate原理概述: 从用户角度来看,用 ...

  8. spring程序开发步骤

    1.使用spring框架之前的开发步骤 2.使用spring之后的开发步骤 3.文字描述 1.导入Spring开发的基本依赖 2.编写Dao接口和实现类 3.创建spring核心配置文件 4.在spr ...

  9. struts2+hibernate整合开发步骤

    百度的各种代码,步骤,自己整合了一下 1,创建数据库 常用mysql   creat table..... 2,在WebContent下的bin中添加相应的包 http://pan.baidu.com ...

随机推荐

  1. CLLocation的属性以及使用的解释

    http://blog.csdn.net/u012496940/article/details/47405345  上一篇的链接(一个定位实例) 从上一篇中的实例了解所使用的一些元素: CLLcati ...

  2. Android自己主动提示文本框(AutoCompleteTextView)

    自己主动提示文本框(AutoCompleteTextView)能够加强用户体验,缩短用户的输入时间(百度的搜索框就是这个效果). 首先.在xml中定义AutoCompleteTextView控件: a ...

  3. react 项目实战(三)表单验证

    我们需要记录每一个字段当前的有效状态,有效时隐藏错误信息,无效时显示错误信息. 而这个有效/无效,可以在表单值改变的时候进行判断. 我们对/src/pages/UserAdd.js进行修改: 首先修改 ...

  4. log4j 具体解释

    通常,我们都提供一个名为 log4j.properties的文件.在第一次调用到Log4J时,Log4J会在类路径(../web-inf/class/当然也能够放到其他不论什么文件夹.仅仅要该文件夹被 ...

  5. win7下 sublime text2操作快捷键 - leafu

    Ctrl+L            选择整行(按住-继续选择下行)                           Ctrl+KK          从光标处删除至行尾               ...

  6. 秒懂C#通过Emit动态生成代码 C#使用Emit构造拦截器动态代理类

    秒懂C#通过Emit动态生成代码   首先需要声明一个程序集名称, 1 // specify a new assembly name 2 var assemblyName = new Assembly ...

  7. Linux系统编程_6_进程环境(C程序典型的存储空间)

    1.八种结束Linux进程的方法: 五种正常终止方式: main函数返回: 调用exit: 调用_exit或_Exit 最后一个线程从其启动例程返回 最后一个线程调用pthread_exit 三种异常 ...

  8. 获取Linux磁盘分区的UUID

    在设置fstab自动挂载时,需要填写如下的信息: # <file system> <mount point> <type> <options> < ...

  9. grep结合awk简单用法

    一.grep简介: grep (缩写来自Globally search a Regular Expression and Print)是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹配的行 ...

  10. a high-level neural networks AP

    Keras Documentation https://keras.io/ You have just found Keras. Keras is a high-level neural networ ...