Spring与Hibernate两种组合方式

Spring与Hibernate大致有两种组合方式,主要区别是一种是在Hibernate中的hibernate.cfg.xml中配置数据源,一种是借助Spring的jdbc方式在Spring的applicationContext.xml文件中配置数据源,然后在Spring配置sessionFactory的bean有些区别

 

 

第一种

1.hibernate.cfg.xml文件

 

 

xml version='1.0' encoding='utf-8'?> 

  •         "-//Hibernate/Hibernate Configuration DTD 3.0//EN"  
    •         "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> 
  •  
  • <hibernate-configuration> 
  •  
  •     <session-factory> 
  •  
  •           
  •         <property name="connection.driver_class">com.microsoft.jdbc.sqlserver.SQLServerDriverproperty> 
  •         <property name="connection.url">jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=acegi;SelectMethod=cursorproperty> 
  •         <property name="connection.username">saproperty> 
  •         <property name="connection.password">serverproperty> 
  •         <property name="show_sql">trueproperty> 
  •  
  •          <mapping resource=""/> 
  •  
  •     session-factory> 
  •  
  • hibernate-configuration> 
  • 2.在spring配置sessionFactory

     

  • <bean id="sessionFactory"    class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> 
  •    <property name="configLocation" value="classpath:hibernate.cfg.xml"></property> 
  •  </bean> 
  •  <bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager"> 
  •     <property name="sessionFactory" ref="sessionFactory"></property> 
  •  </bean> 
  •  <tx:annotation-driven transaction-manager="txManager"/> 
  •  

     

     

     

     

    第二种

     

    1. <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"> 
    2.          <property name="driverClassName" value="com.microsoft.jdbc.sqlserver.SQLServerDriver"/> 
    3.          <property name="url" value="jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=acegi;SelectMethod=cursor"/> 
    4.          <property name="username" value="sa"/> 
    5.          <property name="password" value="server"/> 
    6.  
    7.  
    8.    </bean> 
    9.     
    10.  <bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean"> 
    11.    <property name="dataSource" value="dataSource"></property> 
    12.  
    13. <property name="mappingResources"> 
    14.      <list> 
    15.               <value>user.hbm.xml</value> 
    16.      </list> 
    17.  </property> 
    18.  <property name="hibernateProperties"> 
    19.       <props> 
    20.         <prop key="hibernate.show_sql">true</prop> 
    21.    </props> 
    22.   </property> 
    23.  </bean>    
    24.  
    25.     </bean> 
    26.  <bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager"> 
    27.     <property name="sessionFactory" ref="sessionFactory"></property> 
    28.  </bean> 
    29.  <tx:annotation-driven transaction-manager="txManager"/> 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值