2013-08-01 11:30:18,176 ERROR [org.jboss.web.tomcat.service.jca.CachedConnectionValve] (http-127.0.0.1-8080-1) Application error: resteasy-servlet did not complete its transaction
以上是我在服务器控制台中遇到的错误。我正在向某个客户发出请求,如果客户是null
我正在返回响应。我认为这是因为我在不执行完整代码的情况下重新调整响应。
以下块正在犯此错误
Users client = PersistanceService.findModel(Users.class, request.getClientId());
//checking if its a valid client
if (client == null) {
LOGGER.warn("User not found : invalid client");
return response;
}
我应该怎么做才能避免这种情况?