1、删除多余的数据源和数据源拦截器,将行为日志迁到MySql上,并在日志查询接口上添加Blob类型转换工具;

2、修改DNS响应策略配置 reqStrateId验证条件;
3、修改maat.xml,存储结构结尾无\n的都加上。
This commit is contained in:
zhangdongxu
2018-06-26 10:14:52 +08:00
parent 00aa2ea8d9
commit d2fc307d02
10 changed files with 154 additions and 241 deletions

View File

@@ -123,7 +123,7 @@ public class SaveRequestLogThread implements Runnable {
try {
reader=request.getReader();
while((line=reader.readLine())!=null){
bulider.append(line);
bulider.append(new String(line.getBytes(),"utf-8"));
bulider.append("\n");
}
} catch (IOException e) {