【SSH框架】系列之 Spring 整合 Hibernate 框架

1、SSH 三大框架整合原理

  • Spring 与 Struts2 的整合就是将 Action 对象交给 Spring 容器来负责创建。
  • Spring 与 Hibernate 的整合就是将 SessionFactory 交给 Spring 容器来负责维护,并且 Spring 容器负责 Session 维护以及相关的 AOP 事务。

2、Spring 整合 Hibernate 框架

(1)、新建 web 项目,导入 Spring 和 Hibernate 框架所需要的 jar 包,如下图所示:

(2)、单独配置 Spring 容器,具体配置如下:

applicationContext.xml

  • 创建配置文件,并导入约束
<?xml version="1.0" encoding="UTF-8"?><beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"        xmlns="http://www.springframework.org/schema/beans"         xmlns:context="http://www.springframework.org/schema/context"        xmlns:aop="http://www.springframework.org/schema/aop"         xmlns:tx="http://www.springframework.org/schema/tx"        xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd                             http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd                             http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.2.xsd                             http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.2.xsd ">

</beans>

web.xml

  • 配置 Spring 随项目启动
 <!-- 让spring随web启动而创建的监听器 -->  <listener>      <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>  </listener>  <!-- 配置spring配置文件位置参数 -->  <context-param>      <param-name>contextConfigLocation</param-name>      <param-value>classpath:applicationContext.xml</param-value>  </context-param>

(3)、单独配置 Hibernate

  • 书写实体类与 orm 元数据
  • 配置主配置文件

hibernate.cfg.xml

<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE hibernate-configuration PUBLIC    "-//Hibernate/Hibernate Configuration DTD 3.0//EN"    "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd"><hibernate-configuration>    <session-factory>

<!-- 数据库驱动 -->        <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>         <!-- 数据库url -->        <property name="hibernate.connection.url">jdbc:mysql:///hbDB</property>         <!-- 数据库连接用户名 -->        <property name="hibernate.connection.username">root</property>         <!-- 数据库连接密码 -->        <property name="hibernate.connection.password">root</property>        <!-- 数据库方言            注意: MYSQL在选择方言时,请选择最短的方言.         -->        <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>

<!-- 将hibernate生成的sql语句打印到控制台 -->        <property name="hibernate.show_sql">true</property>        <!-- 将hibernate生成的sql语句格式化(语法缩进) -->        <property name="hibernate.format_sql">true</property>        <!--         自动导出表结构. 自动建表         -->        <property name="hibernate.hbm2ddl.auto">update</property>

<!-- 引入实体配置文件 -->        <mapping resource="com/spring/domain/*.hbm.xml" />        <mapping resource="com/spring/domain/*.hbm.xml" />        <mapping resource="com/spring/domain/*.hbm.xml" />

</session-factory></hibernate-configuration>

(4)、Spring 整合 Hibernate

  • 在 Spring 容器中配置SessionFactory
<!-- 在 Spring 配置中放置 hibernate 配置信息 -->    <bean name="sessionFactory" class="org.springframework.orm.hibernate5.LocalSessionFactoryBean" >        <!-- 将连接池注入到 sessionFactory, hibernate 会通过连接池获得连接 -->        <property name="dataSource" ref="dataSource" ></property>        <!-- 配置 hibernate 基本信息 -->        <property name="hibernateProperties">            <props>                <!--  必选配置 -->            <!--    <prop key="hibernate.connection.driver_class" >com.mysql.jdbc.Driver</prop>                <prop key="hibernate.connection.url" >jdbc:mysql:///crm_32</prop>                <prop key="hibernate.connection.username" >root</prop>                <prop key="hibernate.connection.password" >1234</prop> -->                <prop key="hibernate.dialect" >org.hibernate.dialect.MySQLDialect</prop>

<!--  可选配置 -->                <prop key="hibernate.show_sql" >true</prop>                <prop key="hibernate.format_sql" >true</prop>                <prop key="hibernate.hbm2ddl.auto" >update</prop>            </props>        </property>        <!-- 引入 orm 元数据,指定orm元数据所在的包路径,spring 会自动读取包中的所有配置 -->        <property name="mappingDirectoryLocations" value="classpath:com/spring/domain" ></property>    </bean>

(5)、Spring 整合 hibernate 环境操作数据库

  • 创建 Dao 类继承 HibernateDaoSupport
  • Spring 中配置 action service dao
<!-- action -->    <!-- Action对象作用范围一定是多例的 -->    <bean name="*Action" class="com.spring.web.action.*Action" scope="prototype" >        <property name="*Service" ref="*Service" ></property>    </bean>    <!-- service -->    <bean name="*Service" class="com.spring.service.impl.*ServiceImpl" >        <property name="*demo" ref="*Dao" ></property>    </bean>    <!-- dao -->    <bean name="*Dao" class="com.spring.dao.impl.*DaoImpl" >        <!-- 注入sessionFactory -->        <property name="sessionFactory" ref="sessionFactory" ></property>    </bean>
  • 使用 hibernate 模板进行具体操作

扫描关注微信公众号,了解更多

原文地址:https://www.cnblogs.com/compassblog/p/8504319.html

时间: 2024-10-07 08:39:21

【SSH框架】系列之 Spring 整合 Hibernate 框架的相关文章

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

内容源自:spring整合hibernate    spring整合注解形式的hibernate 这里和上一部分学习一样用了模板模式, 将hibernate开发流程封装在ORM层提供的模板类HibernateTemplate中,通过在DAO中对模板类的使用,实现对传统hibernate开发流程的代替. 一.先来看看Hibernate的传统开发流程: 1) 配置SessionFactory对象 hibernate.cfg.xml <session-factory> a 数据源 driver_cl

【Spring】Spring系列7之Spring整合MVC框架

7.Spring整合MVC框架 7.1.web环境中使用Spring 7.2.整合MVC框架 目标:使用Spring管理MVC的Action.Controller 最佳实践参考:http://www.itnose.net/detail/6102205.html http://wenku.baidu.com/link?url=ABQ1RvCWEAVObPpqJKWudD-UPc4YyH1MQQlu11fpCeoKexpDLxc2Lgs1c_Fh8HuqshxBfYxNfte6wU2PzdyzcSH

Spring整合JUnit框架进行单元测试代码使用详解

[转]Spring整合JUnit框架进行单元测试代码使用详解 转自 http://blog.csdn.net/yaerfeng/article/details/25187775 感谢博主 :云淡风轻 .仅此一抹 一.Spring提供的JUnit框架扩展: 1. AbstractSpringContextTests:spring中使用spring上下文测试的Junit扩展类,我们一般不会使用这个类来进行单元测试,它是spring内部设计使用到的类    2. AbstractDependencyI

搭建基于全注解的Spring+Spring MVC+Hibernate框架

以实例讲解Spring+Spring MVC+Hibernate框架搭建步骤: 一.配置web.xml Xml代码   <?xml version="1.0" encoding="UTF-8"?> <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XML

java 框架-spring 整合 quartz 框架 service层 注入不了job 类

    1.  spring  + quartz  启动 停止 添加job 功能  一 maven添加quartz  的jar 二 代码区 applicationContext.xml  导入 quartz.xml   <import resource="classpath:spring/quartz.xml"/> <?xml version="1.0" encoding="UTF-8"?> <beans xmlns

spring整合shiro框架

上一篇文章已经对shiro框架做了一定的介绍,这篇文章讲述使用spring整合shiro框架,实现用户认证已经权限控制 1.搭建环境 这里不在赘述spring环境的搭建,可以简单的搭建一个ssm框架,整合后进行简单的测试 1.1 添加依赖 <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-spring</artifactId> <version>1.3

【Spring】Spring系列6之Spring整合Hibernate

6.Spring整合Hibernate 6.1.准备工作 6.2.示例 com.xcloud.entities.book com.xcloud.dao.book com.xcloud.service.book com.xcloud.utils.exception

Spring学习(五)spring整合hibernate

上一篇博客中讲到spring dao层对jdbc的封装,用到了模板模式的设计思想 .这篇我们来看看spring中的orm层对hibernate的封装,也就是所谓的spring整合 hibernate.这里同样用了模板模式, 将hibernate开发流程封装在ORM层提供的模板类HibernateTemplate中,通过在DAO中对模板类的使用,实现对传统hibernate开发流程的代替. 一.先来看看Hibernate的传统开发流程: 1) 配置SessionFactory对象 hibernat

Spring 整合 Hibernate

Spring 整合 Hibernate •Spring 支持大多数流行的 ORM 框架, 包括 Hibernate JDO, TopLink, Ibatis 和 JPA. •Spring 对这些 ORM 框架的支持是一致的, 因此可以把和 Hibernate 整合技术应用到其他 ORM 框架上. •Spring 2.0 同时支持 Hibernate 2.x 和 3.x. 但 Spring 2.5 只支持 Hibernate 3.1 或更高版本 1.Spring 整合 Hibernate 整合什么