chore: continew-starter 2.8.1 => 2.8.2

1.graceful-response 5.0.4-boot3 => 5.0.5-boot3(修复父类参数校验异常)
2.修复日志记录时所属模块和描述取值优先级失效的问题
3.使用 SpringUtils.getProxy 优化部分代码
This commit is contained in:
2025-01-09 21:34:50 +08:00
parent b5bbdb27e6
commit 146f5b2169
4 changed files with 6 additions and 5 deletions

View File

@@ -84,6 +84,7 @@ import top.continew.starter.extension.crud.model.query.SortQuery;
import top.continew.starter.extension.crud.model.resp.PageResp;
import top.continew.starter.extension.crud.service.BaseServiceImpl;
import top.continew.starter.web.util.FileUploadUtils;
import top.continew.starter.core.util.SpringUtils;
import java.io.IOException;
import java.time.Duration;
@@ -518,7 +519,7 @@ public class UserServiceImpl extends BaseServiceImpl<UserMapper, UserDO, UserRes
baseMapper.insert(insertList);
}
if (CollUtil.isNotEmpty(updateList)) {
this.updateBatchById(updateList);
SpringUtils.getProxy(this).updateBatchById(updateList);
userRoleService.deleteByUserIds(updateList.stream().map(UserDO::getId).toList());
}
if (CollUtil.isNotEmpty(userRoleDOList)) {