HttpUrlConnection花了太长时间,为什么?

时间:2013-04-26 20:44:08

标签: java spring http

我在Java中创建了一个HttpUrlConnection GET。并且需要花费很多时间来处理,代码对返回JSON的URL进行GET。 (这不是那么大,只有几行)不知道为什么从一个jQuery ajax调用客户端进行处理就像A LOT一样。

这是Java代码:

@RequestMapping(value = "/getchartdata", method = RequestMethod.GET)
    public ResponseEntity<String> graphChartData(ModelMap model, HttpServletRequest request) {
        String graphName = request.getParameter("graphName");
        String subgroup = request.getParameter("subgroup");

        HttpURLConnection connection = null;
        try {
            String configURL = EsbConfig.getProperty("graph.url", "http://localhost:8081");
            URL url = new URL(configURL + "/plot/get?graphName="+ graphName+"&subgroup="+subgroup+"&width=100");
            connection = (HttpURLConnection) url.openConnection();
            connection.connect();

            BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
            String line = null;

            StringBuilder responseData = new StringBuilder();
            while((line = in.readLine()) != null) {
                responseData.append(line);
            }       
            HttpHeaders responseHeaders = new HttpHeaders();
            responseHeaders.setContentType(MediaType.APPLICATION_JSON);
            return new ResponseEntity<String>(responseData.toString(), responseHeaders, HttpStatus.CREATED);
        } catch (MalformedURLException e1) {
            e1.printStackTrace();
        } catch (IOException e1) {
            e1.printStackTrace();
        } finally {
            if(null != connection) { connection.disconnect(); }
        }

        return null;
    }

我不会添加ajax调用,因为它非常简单,没什么可说的。 如果我直接访问整个URL,我会在纳秒内得到json响应。如果我从客户端拨打电话,则需要10秒钟来检索信息。

关于什么是错的任何想法?或任何其他HTTP get我可以实现?

感谢。

0 个答案:

没有答案