溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

使用Spring如何實現(xiàn)整合Hiernate

發(fā)布時間:2020-11-12 17:02:46 來源:億速云 閱讀:136 作者:Leah 欄目:編程語言

使用Spring如何實現(xiàn)整合Hiernate?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。

一、整合目標

1.由IoC容器管理Hibernate的SessionFactory

2.讓Hibernate使用Spring的聲明式事務(wù)

二、整合步驟

先加入Hibernat,再加入Spring,再進行整合。

第一步:

配置Hibernate

1.加入Hibernate相關(guān)的包

Hibernate的必需包

c3p0包和數(shù)據(jù)庫驅(qū)動包

AspectJWeaver.jar

數(shù)據(jù)庫驅(qū)動包

2.添加Hibernate的配置文件hibernate.cfg.xml

a.Hibernate的數(shù)據(jù)源配置可以拿到Spring中去配置,所以無需在hibernate.cfg.xml中配置。

b.關(guān)聯(lián)的.hbm.xml文件也可以在Spring配置文件中配置SessionFactory時進行配置。

c.在hibernate.cfg.xml中可以配置sql方言,sql顯示,自動生成表,二級緩存等內(nèi)容

使用Spring如何實現(xiàn)整合Hiernate

3.編寫實體類和對應(yīng)的hbm.xml映射文件。

<&#63;xml version="1.0" encoding="UTF-8"&#63;>
<!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>
    <!-- 數(shù)據(jù)庫連接用Spring配置
    <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
    <property name="hibernate.connection.url">jdbc:mysql://127.0.0.1:3306/mydb</property>
    <property name="hibernate.connection.username">root</property>
    -->
    <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
    <property name="show_sql">true</property>
   <!--  類映射也可用Spring來配置
    <mapping resource="com/itnba/maya/entities/Family.hbm.xml"/>
    <mapping resource="com/itnba/maya/entities/Info.hbm.xml"/>
    <mapping resource="com/itnba/maya/entities/Nation.hbm.xml"/>
    <mapping resource="com/itnba/maya/entities/Title.hbm.xml"/>
    <mapping resource="com/itnba/maya/entities/Work.hbm.xml"/> 
    -->
  </session-factory>
  
</hibernate-configuration>

第二步:加入Spring

1.加入Spring包。

Spring的jar包

aspectjweaver.jar

2.加入Spring的配置文件。

配置數(shù)據(jù)源

1)建立db.properties的資源文件,配置數(shù)據(jù)源的連接信息。

driverClass=com.mysql.jdbc.Driver
jdbcUrl=jdbc:mysql://localhost:3306/mydb
user=root
password=
minPoolSize=5
maxPoolSize=20
initialPoolSize=5

在Spring配置文件中導(dǎo)入db.properties <context:property-placehoder/>

配置實體化c3p0的數(shù)據(jù)源ComboPooledDataSource

(測試數(shù)據(jù)源配置成功)

  <!--加載資源對象 -->
    <context:property-placeholder location="classpath:db.properties"/>
    <!-- 實例化c3p0數(shù)據(jù)源 -->
    <bean class="com.mchange.v2.c3p0.ComboPooledDataSource" id="dataSource">
      <property name="driverClass" value="${driverClass}"></property>
      <property name="jdbcUrl" value="${jdbcUrl}"></property>
      <property name="user" value="${user}"></property>
      <property name="password" value="${password}"></property>
      <property name="minPoolSize" value="${minPoolSize}"></property>
      <property name="maxPoolSize" value="${maxPoolSize}"></property>
      <property name="initialPoolSize" value="${initialPoolSize}"></property>
    </bean>

2)配置Hibernate的SessionFactory——通過Spring提供的LocalSessionFactoryBean來配置

<!-- 配置Hibernate的SessionFactory -->
<bean class="org.springframework.orm.hibernate5.LocalSessionFactoryBean" id="factory">

<!--配置數(shù)據(jù)源屬性-->
<property name="dataSource" ref="dataSource"></property>

<!--配置Hibernate配置文件的位置-->
<property name="configLocation" value="classpath:hibernate.cfg.xml"></property>

<!--配置Hibernate映射文件的位置,可以使用通配符-->
<property name="mappingLocations" value="com/itnba/maya/entities/*.hbm.xml"></property>
</bean>

3)配置Spring的聲明式事務(wù)

配置事務(wù)管理器 -- HibernateTransactionManager

<!-- 配置spring的事務(wù)管理器 -->
    <bean class="org.springframework.orm.hibernate5.HibernateTransactionManager" id="transactionManager"><!-- 要根據(jù)hibernate的版本配置 -->
      <property name="sessionFactory" ref="factory"></property>
    </bean>

配置事務(wù)屬性 -- 導(dǎo)入tx命名空間

  <!-- 配置事務(wù)屬性 -->
    <tx:advice id="txAdvice" transaction-manager="transactionManager">
      <tx:attributes>
        <tx:method name="*"/>
      </tx:attributes>
    </tx:advice>

配置事務(wù)切點,并把切點和事務(wù)屬性關(guān)聯(lián)起來。--導(dǎo)入aop命名空間

  <!-- 配置事務(wù)切入點 -->
    <aop:config>
      <aop:pointcut expression="execution(* com.itnba.maya.entities.*.*(..))" id="pointCut"/>
      <aop:advisor advice-ref="txAdvice" pointcut-ref="pointCut"/>
    </aop:config>

第三步:編寫代碼

1.在Spring配置文件中配置自動掃描的包

    <!-- 自動掃描 -->
    <context:component-scan base-package="com.itnba.maya.entities"></context:component-scan>
package com.itnba.maya.entities;

import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Repository;
@Repository//自動掃描
public class InfoDao {
  @Autowired//自動掃描
  private SessionFactory factory;
  public Session getSession(){
    return factory.getCurrentSession();
  }
  
  public void select() {
    Info data = getSession().get(Info.class, "p005");
    System.out.println(data.getName());

  }

}

用 main函數(shù)執(zhí)行

package com.itnba.maya.entities;

import java.sql.Connection;
import java.sql.SQLException;

import javax.sql.DataSource;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class Test {

  public static void main(String[] args) throws SQLException {
    ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
    InfoDao data=(InfoDao) context.getBean(InfoDao.class);
    data.select();
    
  
  }
}

結(jié)果:

使用Spring如何實現(xiàn)整合Hiernate

完整的Spring配置文件

<&#63;xml version="1.0" encoding="UTF-8"&#63;>
<beans xmlns="http://www.springframework.org/schema/beans"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns:aop="http://www.springframework.org/schema/aop"
  xmlns:context="http://www.springframework.org/schema/context"
  xmlns:tx="http://www.springframework.org/schema/tx"
  xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.3.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd
    http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.3.xsd"
    >
    <!-- 自動掃描 -->
    <context:component-scan base-package="com.itnba.maya.entities"></context:component-scan>
    <!--加載資源對象 -->
    <context:property-placeholder location="classpath:db.properties"/>
    <!-- 實例化c3p0對象 -->
    <bean class="com.mchange.v2.c3p0.ComboPooledDataSource" id="dataSource">
      <property name="driverClass" value="${driverClass}"></property>
      <property name="jdbcUrl" value="${jdbcUrl}"></property>
      <property name="user" value="${user}"></property>
      <property name="password" value="${password}"></property>
      <property name="minPoolSize" value="${minPoolSize}"></property>
      <property name="maxPoolSize" value="${maxPoolSize}"></property>
      <property name="initialPoolSize" value="${initialPoolSize}"></property>
    </bean>
    <!-- 配置Hibernate的SessionFactory -->
    <bean class="org.springframework.orm.hibernate5.LocalSessionFactoryBean" id="factory">
      <property name="dataSource" ref="dataSource"></property>
      <property name="configLocation" value="classpath:hibernate.cfg.xml"></property>
      <property name="mappingLocations" value="com/itnba/maya/entities/*.hbm.xml"></property>
    </bean>
    <!-- 配置spring的聲明性事務(wù) -->
    <bean class="org.springframework.orm.hibernate5.HibernateTransactionManager" id="transactionManager"><!-- 要根據(jù)hibernate的版本配置 -->
      <property name="sessionFactory" ref="factory"></property>
    </bean>
    <!-- 配置事務(wù)屬性 -->
    <tx:advice id="txAdvice" transaction-manager="transactionManager">
      <tx:attributes>
        <tx:method name="*"/>
      </tx:attributes>
    </tx:advice>
    <!-- 配置事務(wù)切入點 -->
    <aop:config>
      <aop:pointcut expression="execution(* com.itnba.maya.entities.*.*(..))" id="pointCut"/>
      <aop:advisor advice-ref="txAdvice" pointcut-ref="pointCut"/>
      
    </aop:config>

</beans>

另外:

Spring整合Hibernate,也可以不使用 Hibernate的配置文件,把Hibernate配置文件中的內(nèi)容放在Spring的配置文件中。(一般不這么用)

<property name="hibernateProperties">
<props>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
....
</props>
</property>

看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI