|
@@ -1148,7 +1148,7 @@ public class ArchiveTreeContractSyncImpl {
|
|
if (StringUtils.isBlank(contractLogType)){
|
|
if (StringUtils.isBlank(contractLogType)){
|
|
throw new ServiceException("当前节点未配置同步日志资料类型");
|
|
throw new ServiceException("当前节点未配置同步日志资料类型");
|
|
}
|
|
}
|
|
- List<Integer> logType = Arrays.stream(contractLogType.split(","))
|
|
|
|
|
|
+ List<Integer> logType = Arrays.stream(contractLogType.split(",")).filter(l -> StringUtils.isNotBlank(l))
|
|
.map(Integer::parseInt) // 将每个字符串转换为Integer
|
|
.map(Integer::parseInt) // 将每个字符串转换为Integer
|
|
.collect(Collectors.toList());
|
|
.collect(Collectors.toList());
|
|
//获取日志类型字典
|
|
//获取日志类型字典
|