.
This commit is contained in:
@@ -35,6 +35,18 @@ public class DbExecutors {
|
||||
List<Map> rows = listFuture.get();
|
||||
Integer total = countFuture.get();
|
||||
|
||||
/*rows.forEach(x -> {
|
||||
x.forEach((k,v) -> {
|
||||
if ("[B".equals(v.getClass().getName())) {
|
||||
try {
|
||||
//System.out.println(k + " : " + new String((byte[]) v, "UTF-8"));
|
||||
x.put(k, new String((byte[]) v, "UTF-8"));
|
||||
} catch (UnsupportedEncodingException e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
}
|
||||
});
|
||||
});*/
|
||||
return PageBean.by(rows, total);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user