qq_36859539 2018-12-18 06:37 采纳率: 100%
浏览 2325
已采纳

spring下activiti事务无法回滚?

1.spring下的service方法editApply层加了@Transactional(readOnly=false),这个方法下调用了工作流的 taskService.complete "a" 和另外一个applyService.updateClaimByTaskHistory(task.getId()) "b" ;顺序是a的方法在前,b方法在后;b方法报错后,前面执行过的工作流无法回滚。

2.工作流的配置文件已经配置过spring的事务管理

3.试过 Object savePoint = TransactionAspectSupport.currentTransactionStatus().createSavepoint();
TransactionAspectSupport.currentTransactionStatus().rollbackToSavepoint(savePoint);的方法’

        this.taskService.complete(repayApply.getTaskId(),map);
                Task task = this.taskService.createTaskQuery()
                        .executionId(searchRepayApply.getExecutionId()).active().singleResult();
                if(task!=null){
                    searchRepayApply.setProcessTask(task.getName());
                    this.applyService.updateClaimByTaskHistory(task.getId());
                }
                else{
                    searchRepayApply.setProcessTask("申请处理完毕");
                }

                save(searchRepayApply);

spring-context-activiti.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"
    xmlns:context="http://www.springframework.org/schema/context" 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.xsd"
    default-lazy-init="true">

    <description>Activiti Configuration</description>

    <!-- 加载配置属性文件 -->
    <context:property-placeholder ignore-unresolvable="true" location="classpath:jeesite.properties" />

    <!-- Activiti begin -->
    <bean id="processEngineConfiguration" class="org.activiti.spring.SpringProcessEngineConfiguration">
        <property name="dataSource" ref="dataSource" />
        <property name="transactionManager" ref="transactionManager" />
<!--        <property name="deploymentResources" value="classpath*:/act/deployments/**/*.bar"/> -->
        <property name="databaseSchemaUpdate" value="true" />
        <property name="jobExecutorActivate" value="false" />
        <property name="history" value="full" />
        <property name="processDefinitionCacheLimit" value="10"/>

        <!-- UUID作为主键生成策略 -->
        <property name="idGenerator" ref="idGen" />

        <!-- 生成流程图的字体 -->
        <property name="activityFontName" value="${activiti.diagram.activityFontName}"/>
        <property name="labelFontName" value="${activiti.diagram.labelFontName}"/>

        <!-- 自定义用户权限 -->
<!--         <property name="customSessionFactories">  -->
<!--             <list> -->
<!--                <bean class="com.thinkgem.jeesite.modules.act.service.ext.ActUserEntityServiceFactory"/> -->
<!--                <bean class="com.thinkgem.jeesite.modules.act.service.ext.ActGroupEntityServiceFactory"/> -->
<!--             </list> -->
<!--        </property> -->

    </bean>

    <bean id="processEngine" class="org.activiti.spring.ProcessEngineFactoryBean">
        <property name="processEngineConfiguration" ref="processEngineConfiguration" />
    </bean>

    <bean id="repositoryService" factory-bean="processEngine" factory-method="getRepositoryService" />
    <bean id="runtimeService" factory-bean="processEngine" factory-method="getRuntimeService" />
    <bean id="formService" factory-bean="processEngine" factory-method="getFormService" />
    <bean id="identityService" factory-bean="processEngine" factory-method="getIdentityService" />
    <bean id="taskService" factory-bean="processEngine" factory-method="getTaskService" />
    <bean id="historyService" factory-bean="processEngine" factory-method="getHistoryService" />
    <bean id="managementService" factory-bean="processEngine" factory-method="getManagementService" />
    <!-- Activiti end -->

</beans>

展开全部

  • 写回答

3条回答 默认 最新

  • 社会复仇者 2018-12-17 22:46
    关注

    1 看配置文件是否配置上了事物,或者有配置特殊规则
    2 方法内报错要抛出异常,如果你自己捕获了就不回滚了
    3 表必须是innoDB
    建议你打断点,执行完a以后看数据库有没有落地数据,如果已经落地了就是配置没生效

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥20 有人知道这是什么问题吗
  • ¥15 torch框架下的强化学习DQN训练奖励值浮动过低,希望指导如何调整
  • ¥35 西门子博图v16安装密钥提示CryptAcquireContext MS_DEF_PROV Error of containger opening
  • ¥15 mes系统扫码追溯功能
  • ¥40 selenium访问信用中国
  • ¥20 在搭建fabric网络过程中遇到“无法使用新的生命周期”的报错
  • ¥15 Python中关于代码运行报错的问题
  • ¥500 python 的API,有酬谢
  • ¥15 软件冲突问题,软件残留问题
  • ¥30 有没有人会写hLDA,有偿求写,我有一个文档,想通过hLDA得出这个文档的层次主题,有偿有偿!
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部