Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibzlite
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibzlite
提交
52f4ceff
提交
52f4ceff
编写于
1月 28, 2021
作者:
tangyaolong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
多动态实例路径修改
上级
bcc32f87
变更
2
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
3 行增加
和
17 行删除
+3
-17
DynamicModelConfigExService.java
.../core/extensions/service/DynamicModelConfigExService.java
+1
-17
FileHelper.java
...util/src/main/java/cn/ibizlab/util/helper/FileHelper.java
+2
-0
未找到文件。
ibzlite-core/src/main/java/cn/ibizlab/core/extensions/service/DynamicModelConfigExService.java
浏览文件 @
52f4ceff
...
...
@@ -112,7 +112,7 @@ public class DynamicModelConfigExService extends DynamicModelConfigServiceImpl {
List
<
FileItem
>
items
=
JSONArray
.
parseArray
(
strModelFile
,
FileItem
.
class
);
if
(!
ObjectUtils
.
isEmpty
(
items
)
&&
items
.
size
()
>
1
)
throw
new
BadRequestAlertException
(
String
.
format
(
"模型解析失败,[%s]模型文件过多"
,
et
.
getConfigid
()),
"DynamicModelConfig"
,
"unzip"
);
File
publishFile
=
new
File
(
getPublishPath
()
+
systemId
);
File
publishFile
=
new
File
(
getPublishPath
()
+
systemId
+
File
.
separator
+
et
.
getDynainstid
()
);
//删除发布目录中的历史文件
if
(
publishFile
.
exists
())
{
FileHelper
.
deleteDir
(
publishFile
.
getPath
());
...
...
@@ -261,22 +261,6 @@ public class DynamicModelConfigExService extends DynamicModelConfigServiceImpl {
return
publishPath
;
}
/**
*
* @param filePath 原路径
* @param instId 需要补充的动态实例id
* @return 在第一层路径后加上动态实例id名字作为路径
* 原来:/sample/xxx
* 修改后:/sample/dynamic/xxx
*/
public
String
concatFilePath
(
String
filePath
,
String
instId
)
{
if
(
filePath
!=
null
&&
filePath
.
contains
(
"\\"
)
&&
filePath
.
split
(
"\\\\"
).
length
>
1
){
String
prePath
=
filePath
.
substring
(
0
,
filePath
.
indexOf
(
"\\"
));
String
surPath
=
filePath
.
substring
(
filePath
.
indexOf
(
"\\"
)+
1
);
return
prePath
+
File
.
separator
+
instId
.
toLowerCase
()
+
File
.
separator
+
surPath
;
}
return
filePath
;
}
/**
* 获取系统标识
...
...
ibzlite-util/src/main/java/cn/ibizlab/util/helper/FileHelper.java
浏览文件 @
52f4ceff
...
...
@@ -74,6 +74,7 @@ public class FileHelper {
public
static
void
unTarGz
(
File
zipFile
,
String
descDir
,
boolean
exp
)
throws
IOException
{
TarInputStream
tarIn
=
null
;
try
{
log
.
info
(
"***************************开始解压缩tar.gz格式文件***************************"
);
tarIn
=
new
TarInputStream
(
new
GZIPInputStream
(
new
BufferedInputStream
(
new
FileInputStream
(
zipFile
))),
1024
*
2
);
...
...
@@ -122,6 +123,7 @@ public class FileHelper {
}
catch
(
IOException
ex
){
throw
new
IOException
(
"关闭tarFile出现异常"
,
ex
);
}
log
.
info
(
"***************************解压缩tar.gz格式文件结束***************************"
);
}
}
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录