解决由于mybatis-plus无法过滤软删除导致角色去掉菜单缓存未刷新的问题。

解决由于mybatis-plus无法过滤软删除导致角色去掉菜单缓存未刷新的问题。
This commit is contained in:
dxyx 2021-03-12 09:34:01 +08:00 committed by Gitee
parent 8683401c80
commit bbea33e72e

View File

@ -123,7 +123,7 @@ public class SysPermissionServiceImpl implements SysPermissionService {
if (maxUpdateTime == null) { // 如果更新时间为空说明 DB 一定有新数据
log.info("[loadRoleMenuIfUpdate][首次加载全量角色与菜单的关联]");
} else { // 判断数据库中是否有更新的角色与菜单的关联
if (!roleMenuMapper.selectExistsByUpdateTimeAfter(maxUpdateTime)) {
if (roleMenuMapper.selectExistsByUpdateTimeAfter(maxUpdateTime).size() == 0) {
return null;
}
log.info("[loadRoleMenuIfUpdate][增量加载全量角色与菜单的关联]");