mirror of
				https://gitee.com/hhyykk/ipms-sjy.git
				synced 2025-11-04 12:18:42 +08:00 
			
		
		
		
	fix:同一个类中:A方法(无事务)调B方法(有事务),事务不生效问题
This commit is contained in:
		@@ -8,6 +8,7 @@ import cn.iocoder.yudao.framework.common.pojo.CommonResult;
 | 
			
		||||
import cn.iocoder.yudao.framework.common.util.date.DateUtils;
 | 
			
		||||
import cn.iocoder.yudao.framework.common.util.date.LocalDateTimeUtils;
 | 
			
		||||
import cn.iocoder.yudao.framework.common.util.json.JsonUtils;
 | 
			
		||||
import cn.iocoder.yudao.framework.common.util.spring.SpringAopUtils;
 | 
			
		||||
import cn.iocoder.yudao.framework.tenant.core.util.TenantUtils;
 | 
			
		||||
import cn.iocoder.yudao.module.pay.dal.dataobject.notify.PayNotifyLogDO;
 | 
			
		||||
import cn.iocoder.yudao.module.pay.dal.dataobject.notify.PayNotifyTaskDO;
 | 
			
		||||
@@ -24,11 +25,13 @@ import cn.iocoder.yudao.module.pay.api.notify.dto.PayRefundNotifyReqDTO;
 | 
			
		||||
import cn.iocoder.yudao.module.pay.service.order.PayOrderService;
 | 
			
		||||
import cn.iocoder.yudao.module.pay.service.refund.PayRefundService;
 | 
			
		||||
import lombok.extern.slf4j.Slf4j;
 | 
			
		||||
import org.springframework.context.ApplicationContext;
 | 
			
		||||
import org.springframework.context.annotation.Lazy;
 | 
			
		||||
import org.springframework.scheduling.annotation.Async;
 | 
			
		||||
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
 | 
			
		||||
import org.springframework.stereotype.Service;
 | 
			
		||||
import org.springframework.transaction.annotation.Transactional;
 | 
			
		||||
import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping;
 | 
			
		||||
 | 
			
		||||
import javax.annotation.Resource;
 | 
			
		||||
import javax.validation.Valid;
 | 
			
		||||
@@ -85,6 +88,9 @@ public class PayNotifyServiceImpl implements PayNotifyService {
 | 
			
		||||
    @Lazy // 循环依赖(自己依赖自己),避免报错
 | 
			
		||||
    private PayNotifyServiceImpl self;
 | 
			
		||||
 | 
			
		||||
    @Resource
 | 
			
		||||
    private ApplicationContext applicationContext;
 | 
			
		||||
 | 
			
		||||
    @Override
 | 
			
		||||
    public void createPayNotifyTask(PayNotifyTaskCreateReqDTO reqDTO) {
 | 
			
		||||
        PayNotifyTaskDO task = new PayNotifyTaskDO();
 | 
			
		||||
@@ -178,7 +184,7 @@ public class PayNotifyServiceImpl implements PayNotifyService {
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            // 执行通知
 | 
			
		||||
            executeNotify(dbTask);
 | 
			
		||||
            applicationContext.getBean(PayNotifyServiceImpl.class).executeNotify(dbTask);
 | 
			
		||||
        });
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user