测试线程池

master
lwj 2024-09-08 02:30:38 +08:00
parent 928858f1d7
commit 00b11a2cb1
1 changed files with 1 additions and 2 deletions

View File

@ -246,13 +246,12 @@ public class TaskServiceImpl extends ServiceImpl<TaskMapper, TaskInfo> implement
log.info("执行查询语句为{}", limitSelect);
log.info(databaseId);
Result tableValue = dataValueClient.findTableValue(databaseId, limitSelect);
log.info("远程调用完毕idaoyong 调用返回的是{}", tableValue);
List<List<DataValue>> data = (List<List<DataValue>>) tableValue.getData();
log.info("远程调用完毕,调用的值为{}", data);
for (List<DataValue> datum : data) {
for (DataValue dataValue : datum) {
String key = dataValue.getKey();
String newKey = fieldAsNameMap.get(key);
log.info("新的目标字段{}",newKey);
log.info("通过map字段取到的值为{}", newKey);
dataValue.setKey(newKey);
}