0

使用 java api 获取 Vault 版本的正确方法是什么?如果没有 api 调用,其余调用是什么?没有 /status 调用。我正在扫描 spring-vault-core-1.1.2.RELEASE-sources.jar 中的关键字“状态”和版本“。

4

1 回答 1

0

您可以使用系统操作接口通过 Template API 获取版本:

VaultOperations operations = …;
VaultHealth health = operations.opsForSys().health();
String version = health.getVersion();

也可以看看:

于 2018-12-26T17:39:21.277 回答