22

下面的代码片段用于使用 RESTful API 调用我的 Web 服务。

ClientConfig config = new DefaultClientConfig();
    Client client = Client.create(config);
    String uri= "https://127.0.0.1:8443/cas-server-webapp-3.5.0/login";
    WebResource resource = client.resource(URLEncoder.encode(uri));
      MultivaluedMap<String, String> queryParams = new MultivaluedMapImpl();
       queryParams.add("username", "suresh");
       queryParams.add("password", "suresh");
       resource.queryParams(queryParams); 
       ClientResponse response = resource.type(
            "application/x-www-form-urlencoded").get(ClientResponse.class);
    String en = response.getEntity(String.class);
    System.out.println(en); 

并在运行上述代码时出现此异常

com.sun.jersey.api.client.ClientHandlerException: java.lang.IllegalArgumentException: URI is not absolute

    at com.sun.jersey.client.urlconnection.URLConnectionClientHandler.handle(URLConnectionClientHandler.java:151)
    at com.sun.jersey.api.client.Client.handle(Client.java:648)
    at com.sun.jersey.api.client.WebResource.handle(WebResource.java:680)

我用谷歌搜索了很多文章,并没有找到我做错的地方。

旁注:cas-server-webapp-3.5.0 在我的机器上部署了 Apache tomacat7 的战争

4

5 回答 5

14

绝对 URI 指定方案;一个非绝对的 URI 被称为是相对的。

http://docs.oracle.com/javase/8/docs/api/java/net/URI.html

那么,也许您的 URLEncoder 没有按照您的预期工作(https 位)?

    URLEncoder.encode(uri) 
于 2013-02-13T08:51:47.650 回答
8

问题可能是您在已经是 URI 的东西上调用 URLEncoder.encode()。

于 2013-02-13T09:42:19.103 回答
3

对于遇到此错误且与 OP 问题不是 100% 相关的其他人,请检查您是否传递了该值,并且在 spring-boot:@Value 注释的情况下它不为空。

于 2021-01-15T13:25:27.447 回答
1

也许问题只在您的 IDE 编码设置中。尝试在任何地方设置 UTF-8:

在此处输入图像描述

于 2019-09-06T12:25:47.903 回答
0

在 API 密钥授权场景中...

从第一个 REST 调用获得 AUTH_TOKEN 和 ENDPOINT_URL 后,您可能正在执行第二个 REST 调用。

检查“<ENDPOINT_URL> + <API_METHOD_URI>”的串联,您可能只发送 API_METHOD_URI。

这发生在我使用 Streamsets 集成平台尝试连接到 Oracle 的 Responsys API 时。

于 2021-04-20T15:01:37.330 回答