码迷,mamicode.com
首页 > 编程语言 > 详细

SpringMVC+MyBatis整合——事务管理

时间:2015-01-08 10:58:55      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:

  项目一直没有做事务管理,这几天一直在想着解决这事,今天早上终于解决了。接下来直接上配置步骤。

  我们项目采用的基本搭建环境:SpringMVC、MyBatis、Oracle11g、WebLogic10。
      Spring事务管理分解了传统的全局事务管理和本地事务管理的劣势,使得在任何环境中都可以使用统一的事务管理模型,你可以写一次代码,然后在不同的环 境从你的代码里面配置不同的事务管理策略,Spring提供两种事务管理策略:一种是声明式事务管理策略,另一种是编程式事务管理策略,这里主要介绍声明 式事务管理策略,由于采用的是SpringMVC、 MyBatis,故统一采用了标注来声明Service、Controller,由于服务器启动时的加载配置文件的顺序为web.xml---->applicationContext.xml(Spring的配置文件)----> *-servlet.xml(SpringMVC的配置文件),由于applicationContext.xml配置文件中Controller会先进行扫描装配,但是此时service还没有进行事务增强处理,得到的将是原样的Service(没有经过事务加强处理,故而没有事务处理能力),所以我们 必须在applicationContext.xml中不扫描Controller,配置如下:

     1.applicationContext.xml中,去掉对controller的扫描

  <context:component-scan base-package="com.digitalchina.*">
        <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller" />
    </context:component-scan>

  2.*-servlet.xml中,去掉对 service的扫描,加入对controller的扫描

 <context:component-scan base-package="com.digitalchina.*">
        <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller" />
        <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service" />
    </context:component-scan>

  3.事务的配置只有在 applicationContext.xml中才会起作用,即
  <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
       <property name="dataSource" ref="dataSource" />
     </bean>
     必须配置在 applicationContext.xml 中

  4.用事务去控制的service,不能加try catch去捕获异常,否则不能被spring拦截到,事务就失效了。

  5.在Service实现类中增加@Transactional注解即可控制事务。

 

 

    

SpringMVC+MyBatis整合——事务管理

标签:

原文地址:http://www.cnblogs.com/lucky-girl/p/4210251.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!