Jetty Server抛出连接超时异常

时间:2015-05-12 01:47:44

标签: java rest http jetty

我正在尝试将我的应用程序放在aws服务器上,但我在Jetty服务器日志中获取此日志。

INFO: I/O exception (java.net.ConnectException) caught when processing request: Connection timed out
May 12, 2015 1:41:02 AM org.apache.commons.httpclient.HttpMethodDirector executeWithRetry
INFO: Retrying request

我正在从我的服务器代码中向另一个服务发出HTTPS请求,它在我的本地开发机器上运行良好。

    PostMethod method = new PostMethod("https://someresource.com/");

    String response="";
    try{
        client.executeMethod(method);
        response = method.getResponseBodyAsString();
    }catch(Exception e) {
        System.err.println(e);
    }finally {
        method.releaseConnection();
    }

但它失败了我上面发布的记录消息。知道我做错了什么吗?另外,我只是将我的工件的war文件放入webapps目录并使用此命令运行Jetty

sudo java -jar start.jar --disable=deploy

0 个答案:

没有答案