From a870471cbf06c625c6d09d4499664c98f664efe3 Mon Sep 17 00:00:00 2001 From: wangxy <1356089412@qq.com> Date: Wed, 10 Apr 2024 10:32:15 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E7=94=A8=E6=88=B7=E6=B3=A8=E5=86=8C?= =?UTF-8?q?=E7=BB=91=E5=AE=9A=E6=B7=BB=E5=8A=A0=E4=BA=8B=E5=8A=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/hyp/framework/web/service/SysRegisterService.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hyp-framework/src/main/java/com/hyp/framework/web/service/SysRegisterService.java b/hyp-framework/src/main/java/com/hyp/framework/web/service/SysRegisterService.java index cd6708d..04cd9d9 100644 --- a/hyp-framework/src/main/java/com/hyp/framework/web/service/SysRegisterService.java +++ b/hyp-framework/src/main/java/com/hyp/framework/web/service/SysRegisterService.java @@ -21,6 +21,7 @@ import com.hyp.framework.manager.AsyncManager; import com.hyp.framework.manager.factory.AsyncFactory; import com.hyp.system.service.ISysConfigService; import com.hyp.system.service.ISysUserService; +import org.springframework.transaction.annotation.Transactional; import java.util.ArrayList; import java.util.List; @@ -53,6 +54,7 @@ public class SysRegisterService /** * 注册 */ + @Transactional(rollbackFor = Exception.class) public String register(RegisterBody registerBody) { String msg = "", username = registerBody.getUsername(), password = registerBody.getPassword();