【发布时间】:2020-02-19 11:05:54
【问题描述】:
从我的 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?
【问题讨论】:
标签: spring-boot redhat kie-server