Map<String, String> hDebugParams = new HashMap<String, String>(hParams);
hDebugParams.put("q", "electronics");
HttpClientTemplate hct = new HttpClientTemplate(selectUrl, true);
hct.executeGetMethod(hDebugParams, new ResponseStringCallback() {
public void doWithResponse(String response) throws IOException {
logger.debug(response);
}
});