hibernate 整合spring的两种方式

hibernate与spring整合有好几种方式,下面一一列举这几种方式

1)保留hibernate.cfg.xml文件

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:p="http://www.springframework.org/schema/p" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:util="http://www.springframework.org/schema/util"
    xmlns:context="http://www.springframework.org/schema/context" 
    xmlns:aop="http://www.springframework.org/schema/aop"
    xsi:schemaLocation="
    http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
    http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
    http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
        
    <bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
        <property name="configLocations">
            <value>classpath:hibernate.cfg.xml</value>
        </property>
    </bean>

    <bean id="testDao" class="com.hibernatespring.dao.impl.TestDaoImpl" >
        <property name="sessionFactory" ref="sessionFactory"></property>
    </bean>
    
    <!--  
    <bean id="transactionManager"
        class="org.springframework.orm.hibernate3.HibernateTransactionManager" 
        p:sessionFactory-ref="sessionFactory" >
    </bean>
    
    
    <tx:advice id="txAdvice" transaction-manager="transactionManager">
        <tx:attributes>
            <tx:method name="*" propagation="REQUIRED" />
        </tx:attributes>
    </tx:advice>
   
    <aop:config>
        <aop:pointcut id="interceptorPointCuts"
            expression="execution(* com.hibernatespring.dao.*.*(..))" />
        <aop:advisor advice-ref="txAdvice"
            pointcut-ref="interceptorPointCuts" />       
    </aop:config>
    
    
    <aop:aspectj-autoproxy proxy-target-class="true"/>
    
    <tx:annotation-driven transaction-manager="transactionManager" />
    
    -->
</beans> 
注意实体类的映射支持注解和配置文件两种方式。
<?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>  
        <property name="hibernate.connection.url">jdbc:mysql://192.168.10.11:3306/erangelab?characterEncoding=utf-8</property>  
        <property name="hibernate.connection.username">eranges</property>  
        <property name="hibernate.connection.password">eranges</property>  
        <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property> 
        <property name="hibernate.connection.autocommit">false</property> 
        <property name="hibernate.show_sql">true</property>
        <property name="hibernate.current_session_context_class">thread</property>
        <mapping class="com.hibernate.model.TBBS_Test"/>
        <!-- <mapping resource="org/mxg/UserInfo.hbm.xml"> --> 
    </session-factory>  
</hibernate-configuration>

这种方式需要注意的问题,这种模式下若hibernate.cfg.xml不设置自动提交的话,使用session或者hibernatetemplate执行save操作,数据是不会提交的。但如果配置了事务,情况就不一样了, 那么使用hibernatetemplate的save操作将不会受hibernate.cfg.xml配置的影响,在spring事务的作用下,数据会随着事务提交。

2)不保留hibernate.cfg.xml文件

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:p="http://www.springframework.org/schema/p" 
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:util="http://www.springframework.org/schema/util"
	xmlns:context="http://www.springframework.org/schema/context" 
	xmlns:aop="http://www.springframework.org/schema/aop"
	xsi:schemaLocation="
	http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
	http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
	http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
	http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd
	http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
	
	<bean id="dataSource" class="org.logicalcobwebs.proxool.ProxoolDataSource">
		<property name="driver">
			<value>com.mysql.jdbc.Driver</value>
		</property>
		<property name="driverUrl">
			<value>jdbc:mysql://192.168.10.11:3306/lab?characterEncoding=utf-8</value>
		</property>
		<property name="user">
			<value>es</value>
		</property>
		<property name="password">
			<value>es</value>
		</property>
	</bean>
		
	<bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean" 
		p:dataSource-ref="dataSource">
		<property name="hibernateProperties">
			<props>
				<prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
				<prop key="hibernate.show_sql">false</prop>
			</props>
		</property>
		<property name="annotatedClasses">
			<list>
				<value>
					com.hibernatespring.model.TBBS_Test
				</value>
			</list>
		</property>
	</bean>

	<bean id="testDao" class="com.hibernatespring.dao.impl.TestDaoImpl" >
		<property name="sessionFactory" ref="sessionFactory"></property>
	</bean>
	
	<bean id="transactionManager"
		class="org.springframework.orm.hibernate3.HibernateTransactionManager" 
		p:sessionFactory-ref="sessionFactory" >
	</bean>
    
    
    <tx:advice id="txAdvice" transaction-manager="transactionManager">
        <tx:attributes>
            <tx:method name="*" propagation="REQUIRED" />
        </tx:attributes>
    </tx:advice>
   
    <aop:config>
        <aop:pointcut id="interceptorPointCuts"
            expression="execution(* com.hibernatespring.dao.*.*(..))" />
        <aop:advisor advice-ref="txAdvice"
            pointcut-ref="interceptorPointCuts" />       
    </aop:config>
    
    
    <aop:aspectj-autoproxy proxy-target-class="true"/>
    
	<tx:annotation-driven transaction-manager="transactionManager" />

</beans> 
这种配置方式需要注意的问题,在不配置事务的情况下面,使用hibernatetemplate进行数据保存,默认是提交的,配置事务的时候那就默认随着事务进行提交不受配置的影响。

注意上述配置都是将事务设置在了dao层,实际业务处理过程中,事务一般都是在service层次,调整到service层是很简单的,只需要更新expression的值就ok了。另外从上述的测试中,我们应该得到总结就是hibernatetemplate本身是不具备事务功能的,只有在配置了transactionManager之后,hibernatetemplate才会具备事务的功能。


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值