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