我知道这个异常为我报告了什么。它是一个空返回。但我想传递一个空对象,并想接收一个空对象。我不想检查 null 并创建一个空对象,它浪费了 cpu 资源,因为 null 传达了它必须传达的内容,没有找到数据。如何允许 JSON 发送空值。
或者
我在这里没有选择吗,我需要创建一个虚拟对象并通过网络发送它吗?
订阅者列表请求请求 = 新
SubscriberListRequest((SubscriberListConcrete)element.getValue()) ;
SubscriberListResponse response ;
clientSession = sessionManager.getClientSession(identityHash) ;
clientSession.getSendQueue().sendRequest(request) ;
try {
response = (SubscriberListResponse)clientSession.waitAndGetResponse(request) ;
} catch (WaitedLongEnoughException e) {
return Response.serverError().build() ;
} catch (UnableToResolveResponseException e) {
return Response.serverError().build() ;
}
//
// Should I check for response.getSubscriberList() == null, create a new SubscriberList() and send it over the wire ?
//
return Response.ok(response.getSubscriberList()).build();