首页 > 其他 > 详细

softRestTemplate 2

时间:2014-07-10 13:28:28      阅读:393      评论:0      收藏:0      [点我收藏+]

@SuppressWarnings("unchecked")
    public User getUser(String id,String name) {
        SoftReference<RestTemplate> softRestTemplate = new SoftReference<RestTemplate>(restTemplate);
        String url = null;
        HashMap<String, String> uriVariables = new HashMap<String, String>();
        HttpHeaders headers = new HttpHeaders();
        headers.setContentType(MediaType.APPLICATION_XML);
        HttpEntity<String> requestEntity = new HttpEntity<String>(headers);
        ResponseEntity<User> response=null;
        Leaguer body=null;
        try {
            uriVariables.put("id", id);
            uriVariables.put("name", name);           
            response = softRestTemplate.get().exchange(url,HttpMethod.GET, requestEntity, User.class, uriVariables);
            body=response.getBody();
        } catch (Exception e) {
            e.printStackTrace();
        }finally{
            softRestTemplate = null;
        }
        return body;
    }

softRestTemplate 2,布布扣,bubuko.com

softRestTemplate 2

原文:http://www.cnblogs.com/yqlwl66/p/3811857.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!