【发布时间】:2021-08-06 09:16:50
【问题描述】:
关于 SonarQube 标记的问题的小问题,我不明白。
我的sn-p很简单。
VaultTokenResponse result = getWebClient().mutate().baseUrl(vaultUrl).build().post().retrieve().bodyToMono(VaultTokenResponse.class).block();
String vaultToken = result.getToken().getToken();
然而,在第二行,Sonarqube 告诉我:
findbugs:NP_NULL_ON_SOME_PATH_FROM_RETURN_VALUE Style - Possible null pointer dereference due to return value of called method
The return value from a method is dereferenced without a null check, and the return value of that method is one that should generally be checked for null. This may lead to a NullPointerException when the code is executed
我有点不确定这是什么意思。
最重要的是,我不知道如何解决这个问题。
请帮忙?
谢谢
【问题讨论】: