Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
kt-keystone
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Matrix
kt-keystone
Commits
7ec72c52
提交
7ec72c52
authored
5月 26, 2022
作者:
mry
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(web): 修复了返回值信息不完整的问题
上级
37c918b2
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
21 行增加
和
12 行删除
+21
-12
SwaggerController.java
...ava/org/matrix/autotest/controller/SwaggerController.java
+21
-12
没有找到文件。
kt-web/src/main/java/org/matrix/autotest/controller/SwaggerController.java
浏览文件 @
7ec72c52
...
...
@@ -124,46 +124,55 @@ public class SwaggerController {
if
(
schema
.
containsKey
(
"$ref"
))
{
ref
=
schema
.
getString
(
"$ref"
);
}
ResponseVo
resp
=
new
ResponseVo
();
if
(
"array"
.
equalsIgnoreCase
(
schemaType
))
{
JSONObject
items
=
schema
.
getJSONObject
(
"items"
);
if
(
items
.
containsKey
(
"$ref"
))
{
ref
=
schema
.
getString
(
"$ref"
);
resp
.
setType
(
schemaType
);
}
else
{
ResponseVo
resp
=
new
ResponseVo
();
resp
.
setName
(
""
);
resp
.
setType
(
items
.
getString
(
"type"
));
respParameters
.
add
(
resp
);
List
<
ResponseVo
>
childRespList
=
new
ArrayList
<>();
ResponseVo
childResp
=
new
ResponseVo
();
childResp
.
setName
(
""
);
childResp
.
setType
(
items
.
getString
(
"type"
));
childRespList
.
add
(
childResp
);
resp
.
setChildResp
(
childRespList
);
}
}
else
{
resp
.
setType
(
StringUtils
.
isBlank
(
schemaType
)
?
"object"
:
schemaType
);
}
if
(
StringUtils
.
isNotBlank
(
ref
))
{
String
def
=
ref
.
substring
(
14
);
JSONObject
defJson
=
refMap
.
get
(
def
);
JSONObject
properties
=
defJson
.
getJSONObject
(
"properties"
);
Set
<
String
>
respKeys
=
properties
.
keySet
();
List
<
ResponseVo
>
childRespList
=
new
ArrayList
<>();
for
(
String
key
:
respKeys
)
{
JSONObject
respMap
=
properties
.
getJSONObject
(
key
);
ResponseVo
r
esp
=
new
ResponseVo
();
r
esp
.
setName
(
key
);
r
esp
.
setDescription
(
respMap
.
getString
(
"description"
));
ResponseVo
childR
esp
=
new
ResponseVo
();
childR
esp
.
setName
(
key
);
childR
esp
.
setDescription
(
respMap
.
getString
(
"description"
));
String
respType
=
respMap
.
getString
(
"type"
);
r
esp
.
setType
(
StringUtils
.
isBlank
(
respType
)
?
"object"
:
respType
);
r
esp
.
setRequired
(
respMap
.
getBooleanValue
(
"required"
));
childR
esp
.
setType
(
StringUtils
.
isBlank
(
respType
)
?
"object"
:
respType
);
childR
esp
.
setRequired
(
respMap
.
getBooleanValue
(
"required"
));
if
(
respMap
.
containsKey
(
"$ref"
))
{
String
childDef
=
getRef
(
respMap
);
JSONObject
childDefJson
=
refMap
.
get
(
childDef
);
JSONObject
childProperties
=
childDefJson
.
getJSONObject
(
"properties"
);
getRef
(
refMap
,
childProperties
,
r
esp
,
childDef
,
childDefJson
);
getRef
(
refMap
,
childProperties
,
childR
esp
,
childDef
,
childDefJson
);
}
else
if
(
"array"
.
equalsIgnoreCase
(
respType
))
{
JSONObject
items
=
respMap
.
getJSONObject
(
"items"
);
if
(
items
.
containsKey
(
"$ref"
))
{
String
itemDef
=
getRef
(
items
);
JSONObject
itemDefJson
=
refMap
.
get
(
itemDef
);
JSONObject
childProperties
=
itemDefJson
.
getJSONObject
(
"properties"
);
getRef
(
refMap
,
childProperties
,
r
esp
,
itemDef
,
itemDefJson
);
getRef
(
refMap
,
childProperties
,
childR
esp
,
itemDef
,
itemDefJson
);
}
}
respParameters
.
add
(
resp
);
childRespList
.
add
(
childResp
);
resp
.
setChildResp
(
childRespList
);
}
respParameters
.
add
(
resp
);
}
}
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论