From 044770e205ca310013d0e2bcd0bb4764398cfe71 Mon Sep 17 00:00:00 2001 From: thinkgem Date: Thu, 20 Feb 2020 12:34:00 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=A3=E7=A0=81=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../jeesite/modules/sys/service/support/LogServiceSupport.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/core/src/main/java/com/jeesite/modules/sys/service/support/LogServiceSupport.java b/modules/core/src/main/java/com/jeesite/modules/sys/service/support/LogServiceSupport.java index 7257aa75..c5b2d755 100644 --- a/modules/core/src/main/java/com/jeesite/modules/sys/service/support/LogServiceSupport.java +++ b/modules/core/src/main/java/com/jeesite/modules/sys/service/support/LogServiceSupport.java @@ -3,7 +3,6 @@ */ package com.jeesite.modules.sys.service.support; -import org.springframework.transaction.annotation.Propagation; import org.springframework.transaction.annotation.Transactional; import com.jeesite.common.entity.Page; @@ -43,7 +42,7 @@ public class LogServiceSupport extends CrudService /** * 不使用数据库事务,执行插入日志 */ - @Transactional(readOnly=false, propagation=Propagation.NOT_SUPPORTED) + @Transactional(readOnly=false)//, propagation=Propagation.NOT_SUPPORTED) public void insertLog(Log entity) { dao.insert(entity); }