RestTemplate实现跨域调用接口

本文主要针对post方式,发送请求。

import com.alibaba.fastjson.JSONObject;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.http.HttpEntity;
import org.springframework.http.HttpHeaders;
import org.springframework.http.ResponseEntity;
import org.springframework.http.client.SimpleClientHttpRequestFactory;
import org.springframework.stereotype.Component;
import org.springframework.web.client.RestTemplate;


import java.util.HashMap;
import java.util.Map;


/**
 * 调用mufly_api接口
 * Created by 耿洪生 on 2016/10/17.
 */
@Component
public class HttpEntityServiceImpl {
    @Value("${muflyapi.appid}")
    private String appID;


    public ResponseEntity<String> responseHttpEntity(String url, Object parameters) {
        Map<String, Object> requestObject = new HashMap<>();
        requestObject.put("appID", appID);
        requestObject.put("parameters", parameters);
        //转json字符串
        JSONObject jsonObject = (JSONObject) JSONObject.toJSON(requestObject);
        String jsonStr = jsonObject.toJSONString();
        //设置HttpHeader
        HttpHeaders headers = new HttpHeaders();
        headers.set("Content-Type", "application/json;charset=UTF-8");
        //设置HttpEntity
        HttpEntity<String> entity = new HttpEntity<String>(jsonStr, headers);


        //设置连接、读取超时时间
        SimpleClientHttpRequestFactory factory = new SimpleClientHttpRequestFactory();
        factory.setConnectTimeout(30 * 1000);
        factory.setReadTimeout(60 * 1000);


        //接口调用
        RestTemplate temp = new RestTemplate(factory);
        ResponseEntity<String> output = temp.postForEntity(url, entity, String.class);
        return output;
    }

}


如果,你不想new,可以使用@Autowired直接引入:

@Autowired
private RestTemplate restTemplate;

/**
 * post请求
 *
 * @param url
 * @param data  map类型
 * @param token
 * @return 实体
 */
public ResponseEntity<String> post(String url, Map data, String token) {
    HttpHeaders headers = new HttpHeaders();
    headers.add("Accept", "application/json");
    headers.add("Accept-Encoding", "gzip");
    headers.add("Content-Encoding", "UTF-8");
    headers.add("Content-Type", "application/json;charset=UTF-8");
    headers.add("Token", token);
    String dataStr = JsonUtil.toJSon(data);
    HttpEntity<String> postEntity = new HttpEntity<>(dataStr, headers);
    return restTemplate.postForEntity(url, postEntity, String.class);
}

至于设置restTemplate bean 的超时:

@Bean(name="restTemplate")
RestTemplate restTemplate() {
   ClientHttpRequestFactory factory = new SimpleClientHttpRequestFactory();
       //设置连接、读取超时时间
       ((SimpleClientHttpRequestFactory) factory).setConnectTimeout(30 * 1000);
       ((SimpleClientHttpRequestFactory) factory).setReadTimeout(60 * 1000);
   return new RestTemplate();
}


spring自带的restTemplate里有很多实用的方法,


其底层还是ClientHttpRequest,


以此记录。

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值