1、修改getMaatTableName方法中获取不到表名的异常信息;

2、如果最后的service没有配置,不论是maat类还是回调类配置,都会传{}+lastCompletedTag(finished)来结束数据传输;
3、找不到业务入库序号时,提示XX业务写入数据库序号映射关系不存在
This commit is contained in:
zhangdongxu
2018-12-05 17:11:12 +08:00
parent 6340ea3f9e
commit 536e5b887a
3 changed files with 12 additions and 8 deletions

View File

@@ -299,7 +299,7 @@ public class ConfigSourcesService extends BaseService {
}
} else {
throw new ServiceRuntimeException(RestBusinessCode.ServiceNoFoundDBIndex.getErrorReason(),
throw new ServiceRuntimeException("service为"+service+"的业务写入数据库序号映射关系不存在",
RestBusinessCode.ServiceNoFoundDBIndex.getValue());
}
}
@@ -478,7 +478,7 @@ public class ConfigSourcesService extends BaseService {
}
} else {
throw new ServiceRuntimeException(RestBusinessCode.ServiceNoFoundDBIndex.getErrorReason(),
throw new ServiceRuntimeException("service为"+service+"的业务写入数据库序号映射关系不存在",
RestBusinessCode.ServiceNoFoundDBIndex.getValue());
}
}
@@ -801,7 +801,7 @@ public class ConfigSourcesService extends BaseService {
}
}
} else {
throw new ServiceRuntimeException("service写入数据库序号映射关系不存在",
throw new ServiceRuntimeException("service"+service+"的业务写入数据库序号映射关系不存在",
RestBusinessCode.ServiceNoFoundDBIndex.getValue());
}
@@ -891,7 +891,7 @@ public class ConfigSourcesService extends BaseService {
}
}
} else {
throw new ServiceRuntimeException("service写入数据库序号映射关系不存在",
throw new ServiceRuntimeException("service"+service+"的业务写入数据库序号映射关系不存在",
RestBusinessCode.ServiceNoFoundDBIndex.getValue());
}
@@ -972,7 +972,7 @@ public class ConfigSourcesService extends BaseService {
}
}
} else {
throw new ServiceRuntimeException("service写入数据库序号映射关系不存在",
throw new ServiceRuntimeException("service"+service+"的业务写入数据库序号映射关系不存在",
RestBusinessCode.ServiceNoFoundDBIndex.getValue());
}
}