zoukankan      html  css  js  c++  java
  • spring @Transactional注解无效

        <!-- 配置事务管理器 -->
        <bean id="transactionManager"
            class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
            <property name="dataSource" ref="dataSource" />
        </bean>
    
        <!-- 配置基于注解的声明式事务 -->
        <tx:annotation-driven transaction-manager="transactionManager" />
    <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
        xmlns:context="http://www.springframework.org/schema/context"
        xmlns:tx="http://www.springframework.org/schema/tx" 
        xmlns:aop="http://www.springframework.org/schema/aop"
        xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd
            http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.3.xsd
            http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.3.xsd">
    </beans>
    @Override
    @Transactional
    public ResponseHelper insert(List<TranslateLexicon> models) {
        //do something here
    }

    1.确保<beans>节点包含xml的tx和aop命名空间。

    2.引入DataSourceTransactionManager这个bean,并配置成可以使用注解声明事务。

    3.在添加了@Transactional注解的方法内部不能使用try{}catch{}。

    我的无效原因是:在方法体内部使用了try{}catch{}。

    解决办法:把try{}catch{}删掉就行了。

    问题分析:因为@Transactional注解实际上就是一个拦截器,当@Transactional代理具体方法并执行,因为你在方法体内部使用了try{}catch{},是拿不到异常信息的,拿不到异常自然就无法回滚了。

    参考文章:https://www.ibm.com/developerworks/cn/java/j-master-spring-transactional-use/index.html

  • 相关阅读:
    Redis集群到集群迁移
    lvm磁盘创建
    前端开发环境
    golang Gorm 运用及执行原生SQL
    redis迁移两款工具
    C#知识点总结系列:3、C#中Delegate和Event以及它们的区别
    由浅入深CIL系列【目录索引】+ PostSharp AOP编程【目录索引】
    Windows 8实用窍门系列:22.Windows 8 的SemanticZoom缩放视图
    C#知识点总结系列:2、C#中IDisposable和IEnumerable、IEnumerator
    Windows 8实用窍门系列【目录索引】
  • 原文地址:https://www.cnblogs.com/subendong/p/9272062.html
Copyright © 2011-2022 走看看