我尝试检查索引是否存在或在我进行搜索之前注意,我通过执行请求找到了解决方案,但是它没有工作,导致NullPointerException
</tbody></table>
答案 0 :(得分:0)
我绝对可以解释你的NullPointerException
:
RestClient restClient = null;
Response response = restClient.performRequest("HEAD", "/" + index());
在这里,您使用restClient
初始化null
,然后在其上调用操作。
就像你打电话一样......
null.performRequest(...)
......这可能会使问题更加明显。
您无法在null
值上调用任何操作(或获取字段值或其他任何内容)。