-1

从我的 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 呢?

4

1 回答 1

1

您可以使用 rest 模板从您的应用程序中调用 rest API:

https://howtodoinjava.com/spring-boot2/resttemplate/spring-restful-client-resttemplate-example/

于 2019-10-23T09:19:52.590 回答