当前位置:编程学习 > JAVA >>

Spring事务管理配置

 

刚学习SSH架构,迫不及待做了个例子,心情难免激动,晒出来,大家分享一下。

 

一、数据库连接文件:dbConfig.cfg.xml

 

<?xml version='1.0' encoding='UTF-8'?>

<!DOCTYPE hibernate-configuration PUBLIC

          "-//Hibernate/Hibernate Configuration DTD 3.0//EN"

          "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

 

<!-- Generated by MyEclipse Hibernate Tools.                   -->

<hibernate-configuration>

 <session-factory>

  <property name="connection.driver_class">com.microsoft.jdbc.sqlserver.SQLServerDriver</property>

  <property name="connection.url">jdbc:microsoft:sqlserver://127.0.0.1:1433</property>

  <property name="myeclipse.connection.profile">NewOA</property>

  <property name="connection.username">sa</property>

  <property name="connection.password">hjl</property>

 

  <property name="dialect">org.hibernate.dialect.SQLServerDialect</property>

  <property name="show_sql">true</property>

 

  <!-- 下面是数据表映射文件路径-->

  <mapping resource="com/myEngin/wfmap/poJo/OatWfFlowmapType.hbm.xml" />

 

 </session-factory>

</hibernate-configuration>

 

 

 

二、Spring配置文件:enginConfig.xml

 

<?xml version="1.0" encoding="UTF-8"?>

<beans

 xmlns="http://www.springframework.org/schema/beans"

 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">

 

 <!-- 工厂对象-->

 <bean id="sessionFactory"

  class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">

  <property name="configLocation"

   value="classpath:dbConfig.cfg.xml">

  </property>

 </bean>

 

 <!-- 事务管理对象-->

 <bean id="transactionManager"

  class="org.springframework.orm.hibernate3.HibernateTransactionManager">

  <property name="sessionFactory">

   <ref local="sessionFactory"/>

  </property>

 </bean>

 

 <!-- 事务拦截对象-->

 <bean id="transactionInterceptor"

  class="org.springframework.transaction.interceptor.TransactionInterceptor">

  <property name="transactionManager">

   <ref local="transactionManager"/>

  </property>

  <property name="transactionAttributes">

   <props>

    <prop key="add*">PROPAGATION_REQUIRED</prop><!-- 以add开头的方法支持事务,如果没有事务就新建一个事务-->

    <prop key="save*">PROPAGATION_REQUIRED</prop><!-- 以save开头的方法支持事务,如果没有事务就新建一个事务-->

    <prop key="delete*">PROPAGATION_REQUIRED</prop><!-- 以delete开头的方法支持事务,如果没有事务就新建一个事务-->

    <prop key="myspecial*">PROPAGATION_REQUIRED,+MyMsgException</prop><!-- 以myspecial开头的方法也支持事务,当抛出MyMsgException异常时仍然可以提交-->

    <prop key="myexcept*">PROPAGATION_REQUIRED,-MyErrException</prop><!-- 以myexcept开头的方法也支持事务,当抛出MyErrException异常时自动回滚-->

    <prop key="*">PROPAGATION_REQUIRED,readOnly</prop><!-- 其它方法也支持事务,但数据是只读的(不能更改)-->

   </props>

  </property>

 </bean>

 

 <!-- 代理对象生成器 ,本例使用自动创建事务代理-->

 <bean id="proxyCreator"

  class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">

  <property name="beanNames">

   <list><!-- 需要添加事务的业务接口类列表(是业务接口,DAO接口不必做为事务)-->

    <value>oatWfFlowmapTypeService</value>

   </list>

  </property>

  <property name="interceptorNames">

   <list>

    <value>transactionInterceptor</value>

   </list>

  </property>

 </bean>

 

 <!-- 代理对象列表(需要Spring管理的实现类)-->

 <bean id="oatWfFlowmapTypeDao"

  class="com.myEngin.wfmap.daoImpl.OatWfFlowmapTypeDaoImpl"><!-- DAO的接口和实现类,不需要作为事务,所以在proxyCreator下面不需要添加-->

  <property name="sessionFactory"><!-- DAO的实现类中继承了HibernateDaoSupport,所以需要注入sessionFactory -->

   <ref local="sessionFactory"/>

  </property>

 </bean>

 <bean id="oatWfFlowmapTypeService"

  class="com.myEngin.wfmap.serviceImpl.OatWfFlowmapTypeServiceImpl"><!-- Service的接口和实现类,需要作为事务,所以需要在proxyCreator下面添加-->

  <property name="oatWfFlowmapTypeDao"><!-- OatWfFlowmapTypeServiceImpl类下面有oatWfFlowmapTypeDao属性,所以在这里注入,也可在调用时再注入,但这样做更简单,易管理-->

   <ref local="oatWfFlowmapTypeDao"/>

  </property>

 </bean>

 

</beans>

 

 

 

三、OatWfFlowmapTypeDaoImpl.java文件:

 

 

public class OatWfFlowmapTypeDaoImpl extends HibernateDaoSupport implements

  OatWfFlowmapTypeDao {。。。。略}

 

 

 

四、OatWfFlowmapTypeServiceImpl.java文件:

 

 

public class OatWfFlowmapTypeServiceImpl implements OatWfFlowmapTypeService {

 //private OatWfFlowmapTypeDao flowmaptypedao;

 private OatWfFlowmapTypeDao oatWfFlowmapTypeDao;

 

 public OatWfFlowmapTypeDao getOatWfFlowmapTypeDao() {

  return oatWfFlowmapTypeDao;

 }

 

 

 public void setOatWfFlowmapTypeDao(OatWfFlowmapTypeDao oatWfFlowmapTypeDao) {

  this.oatWfFlowmapTypeDao = oatWfFlowmapTypeDao;

 }

 

 

 。。。。。略

 

}

 

 五、测试文件test.java:

补充:软件开发 , Java ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,