从我的 Spring Boot 应用程序中,我想调用 Red Hat Decision Manager kie server rest API:
String serverUrl = "https://server:host/services/rest/server";
String username = "username";
String password = "password";
但我收到此错误:
java.lang.RuntimeException:org.kie.server.common.rest.NoEndpointFoundException:没有找到可用的端点
这是因为认证错误。我从该站点下载了认证并创建了密钥库。但是,我怎么能从我们的 spring boot 中调用那个 https 呢?