Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibzuaa
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibzuaa
提交
bd0d3eef
提交
bd0d3eef
编写于
12月 03, 2020
作者:
zhouweidong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
解决oracle下update历史已删除资源过长问题
上级
531d3f22
变更
1
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
34 行增加
和
5 行删除
+34
-5
SysPSSystemExService.java
...ibizlab/core/extensions/service/SysPSSystemExService.java
+34
-5
未找到文件。
ibzuaa-core/src/main/java/cn/ibizlab/core/extensions/service/SysPSSystemExService.java
浏览文件 @
bd0d3eef
package
cn
.
ibizlab
.
core
.
extensions
.
service
;
import
cn.ibizlab.core.uaa.domain.SysApp
;
import
cn.ibizlab.core.uaa.domain.SysPSSystem
;
import
cn.ibizlab.core.uaa.domain.SysPermission
;
import
cn.ibizlab.core.uaa.extensions.domain.PermissionType
;
import
cn.ibizlab.core.uaa.service.ISysPermissionService
;
import
cn.ibizlab.core.uaa.service.impl.SysPSSystemServiceImpl
;
import
com.baomidou.mybatisplus.core.conditions.query.QueryWrapper
;
import
lombok.extern.slf4j.Slf4j
;
import
cn.ibizlab.core.uaa.domain.SysPSSystem
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.context.annotation.Lazy
;
import
org.springframework.context.annotation.Primary
;
import
org.springframework.stereotype.Service
;
import
org.springframework.transaction.annotation.Transactional
;
import
org.springframework.context.annotation.Primary
;
import
org.springframework.util.StringUtils
;
import
java.util.*
;
...
...
@@ -142,9 +142,13 @@ public class SysPSSystemExService extends SysPSSystemServiceImpl {
//移除无效资源
if
(
delPermission
.
size
()>
0
)
sysPermissionService
.
removeBatch
(
delPermission
.
keySet
());
//查询以往删除过的资源
String
delIds
=
getDelPermissionIds
(
list
,
system
.
getPssystemid
());
//将当前系统本次资源enable设为1以避免enable=0时,导致saveOrUpdate无法检测到主键存在,最终插入数据导致主键重复
if
(
newIds
.
size
()>
0
)
sysPermissionService
.
execute
(
String
.
format
(
"update ibzpermission set enable = 1 where sys_permissionid in (%s)"
,
getIds
(
newIds
)
),
null
);
if
(
newIds
.
size
()>
0
&&
!
StringUtils
.
isEmpty
(
delIds
)
)
sysPermissionService
.
execute
(
String
.
format
(
"update ibzpermission set enable = 1 where sys_permissionid in (%s)"
,
delIds
),
null
);
//存储或更新资源saveOrUpdate
if
(
list
.
size
()>
0
)
sysPermissionService
.
saveBatch
(
list
);
...
...
@@ -157,6 +161,31 @@ public class SysPSSystemExService extends SysPSSystemServiceImpl {
return
"'"
+
String
.
join
(
"','"
,
strIdArr
)
+
"'"
;
}
/**
* 查询以往删除过的数据
* @param list
* @return
*/
private
String
getDelPermissionIds
(
Set
<
SysPermission
>
list
,
String
systemId
)
{
String
strDelIds
=
null
;
Map
<
String
,
Integer
>
delPermission
=
new
HashMap
<>();
Map
param
=
new
HashMap
();
param
.
put
(
"systemid"
,
systemId
);
sysPermissionService
.
select
(
"select sys_permissionid from ibzpermission t where pssystemid = #{et.systemid} and t.enable = 0 "
,
param
).
forEach
(
sysPermission
->
delPermission
.
put
(
sysPermission
.
getString
(
"sys_permissionid"
),
1
));
if
(
delPermission
.
size
()
==
0
)
return
strDelIds
;
Set
<
String
>
delIds
=
new
HashSet
<>();
for
(
SysPermission
permission
:
list
)
{
if
(!
StringUtils
.
isEmpty
(
permission
.
getPermissionid
()))
{
if
(
delPermission
.
containsKey
(
permission
.
getPermissionid
()))
{
delIds
.
add
(
permission
.
getPermissionid
());
}
}
}
if
(
delIds
.
size
()
>
0
)
{
strDelIds
=
getIds
(
delIds
);
}
return
strDelIds
;
}
}
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录