Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibzlite
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibzlite
提交
287a44e4
提交
287a44e4
编写于
9月 18, 2020
作者:
sq3536
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
sysapps
上级
ed7c7978
变更
4
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
48 行增加
和
4 行删除
+48
-4
application.yml
...te-app/ibzlite-app-web/src/main/resources/application.yml
+1
-1
LiteModelService.java
...bizlab/core/lite/extensions/service/LiteModelService.java
+23
-1
DstSystemMapper.xml
.../main/resources/mapper/lite/dstsystem/DstSystemMapper.xml
+15
-2
LiteCoreResource.java
...java/cn/ibizlab/api/rest/extensions/LiteCoreResource.java
+9
-0
未找到文件。
ibzlite-app/ibzlite-app-web/src/main/resources/application.yml
浏览文件 @
287a44e4
...
...
@@ -5,7 +5,7 @@ spring:
name
:
ibzlite-web
zuul
:
routes
:
lite
:
lite
-core
:
path
:
/lite/**
serviceId
:
${ibiz.ref.service.ibzlite-api:ibzlite-api}
stripPrefix
:
false
\ No newline at end of file
ibzlite-core/src/main/java/cn/ibizlab/core/lite/extensions/service/LiteModelService.java
浏览文件 @
287a44e4
...
...
@@ -9,6 +9,7 @@ import cn.ibizlab.core.lite.extensions.domain.FieldModel;
import
cn.ibizlab.core.lite.extensions.domain.RelationshipModel
;
import
cn.ibizlab.core.lite.extensions.util.LiteStorage
;
import
cn.ibizlab.core.lite.service.*
;
import
com.alibaba.fastjson.JSONArray
;
import
com.baomidou.mybatisplus.core.toolkit.Wrappers
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.cache.annotation.CacheEvict
;
...
...
@@ -168,7 +169,8 @@ public class LiteModelService {
@Caching
(
evict
=
{
@CacheEvict
(
value
=
"syspssystem"
,
key
=
"'row:all-apps'"
),
@CacheEvict
(
value
=
"syspssystem"
,
key
=
"'row:all-dst-apps'"
)
@CacheEvict
(
value
=
"syspssystem"
,
key
=
"'row:all-dst-apps'"
),
@CacheEvict
(
value
=
"syspssystem"
,
key
=
"'row:all-dst-sys-apps'"
)
})
public
void
resetApps
()
{
...
...
@@ -176,4 +178,24 @@ public class LiteModelService {
}
@Cacheable
(
value
=
"syspssystem"
,
key
=
"'row:sys-dst-sys-apps'"
)
public
List
<
DstSystem
>
getSysApp
()
{
List
<
DstSystem
>
list
=
new
ArrayList
<>();
dstSystemService
.
list
().
forEach
(
system
->
{
if
(
system
.
getSysstructure
()
==
null
)
{
return
;
}
if
(
system
.
getApps
()
==
null
)
{
system
.
setApps
(
system
.
getSysstructure
().
getSysApps
(
true
));
}
system
.
setSysstructure
(
null
);
list
.
add
(
system
);
});
return
list
;
}
}
ibzlite-core/src/main/resources/mapper/lite/dstsystem/DstSystemMapper.xml
浏览文件 @
287a44e4
...
...
@@ -11,8 +11,8 @@
<!--通过mybatis将查询结果注入到entity中,通过配置autoMapping="true"由mybatis自动处理映射关系 -->
<resultMap
id=
"DstSystemResultMap"
type=
"cn.ibizlab.core.lite.domain.DstSystem"
autoMapping=
"true"
>
<id
property=
"pssystemid"
column=
"pssystemid"
/>
<!--主键字段映射-->
<result
column=
"sysstructure"
jdbcType=
"VARCHAR"
property=
"sysstructure"
typeHandler=
"com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler"
/>
<result
property=
"apps"
column=
"apps"
typeHandler=
"cn.ibizlab.core.lite.domain.handlers.DstAppTypeHandler"
/>
</resultMap>
...
...
@@ -35,5 +35,18 @@
<![CDATA[ SELECT t1.`APPS`, t1.`MD5CHECK`, t1.`PSSYSTEMID`, t1.`PSSYSTEMNAME`, t1.`SHOWORDER`, t1.`SYSSTRUCTURE` FROM `IBZPSSYSTEM` t1
]]>
</sql>
<!--数据查询[Default]-->
<sql
id=
"Default"
databaseId=
"oracle"
>
<![CDATA[ SELECT t1.PSSYSTEMID, t1.PSSYSTEMNAME, t1.SYSSTRUCTURE, t1.APPS, t1.MD5CHECK, t1.SHOWORDER FROM IBZPSSYSTEM t1
]]>
</sql>
<!--数据查询[Default]-->
<sql
id=
"Default"
databaseId=
"postgresql"
>
<![CDATA[ SELECT t1.PSSYSTEMID, t1.PSSYSTEMNAME, t1.SYSSTRUCTURE, t1.APPS, t1.MD5CHECK, t1.SHOWORDER FROM IBZPSSYSTEM t1
]]>
</sql>
</mapper>
ibzlite-provider/ibzlite-provider-api/src/main/java/cn/ibizlab/api/rest/extensions/LiteCoreResource.java
浏览文件 @
287a44e4
package
cn
.
ibizlab
.
api
.
rest
.
extensions
;
import
cn.ibizlab.core.lite.domain.DstComponent
;
import
cn.ibizlab.core.lite.domain.DstSystem
;
import
cn.ibizlab.core.lite.extensions.domain.EntityModel
;
import
cn.ibizlab.core.lite.extensions.domain.SysModel
;
import
cn.ibizlab.core.lite.extensions.service.LiteCoreService
;
...
...
@@ -19,6 +20,8 @@ import org.springframework.http.ResponseEntity;
import
org.springframework.util.StringUtils
;
import
org.springframework.web.bind.annotation.*
;
import
java.util.List
;
@Slf4j
@Api
(
tags
=
{
"接口"
})
@RestController
(
"api-litecore"
)
...
...
@@ -60,4 +63,10 @@ public class LiteCoreResource {
return
ResponseEntity
.
status
(
HttpStatus
.
OK
).
body
(
liteCoreService
.
syncSysModel
(
sysModel
));
}
@RequestMapping
(
method
=
RequestMethod
.
GET
,
value
=
"/lite/sysapps"
)
public
ResponseEntity
<
List
<
DstSystem
>>
getSysApps
()
{
return
ResponseEntity
.
status
(
HttpStatus
.
OK
).
body
(
liteModelService
.
getSysApp
());
}
}
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录