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); }