|
@@ -98,8 +98,7 @@ public class FiltersHandler implements UserEditDataHandler {
|
|
|
List<String> filterList = collect.stream().map(item->JSON.toJSONString(item)).collect(Collectors.toList());
|
|
|
redisUtil.lRightPushAll(key, filterList);
|
|
|
|
|
|
- String userEditPath = String.format(UploadFilePath.USER_EDIT_PATH, num);
|
|
|
- String userViewPath = String.format(UploadFilePath.USER_EDIT_PATH, num);
|
|
|
+ String userViewPath = String.format(UploadFilePath.USER_VIEW_PATH, num);
|
|
|
List<String> list = redisUtil.lGet(key, 0, -1);
|
|
|
JSONArray jsonArray = new JSONArray();
|
|
|
list.stream().forEach(str->jsonArray.add(JSON.parseObject(str)));
|