RestTemplate简单使用

本文介绍了RestTemplate的配置,包括如何发送GET和POST请求,设置超时时间,以及实现简单的重试机制。对于GET请求,提供了.getForEntity和.getForObject两种方式。在POST请求中,示例展示了使用map作为请求体,并设置了请求头。此外,还讲解了如何调整RestTemplate的超时时间和实现请求重试功能。
摘要由CSDN通过智能技术生成
1.RestTemplate的配置
@Configuration
public class RestTemplateConfig {

    @Bean
    public RestTemplate restTemplate(RestTemplateBuilder builder) {
        return builder.build();
    }
}
2.发送get请求

.getForEntity
返回结果里包含http header、状态信息等参数,可以通过body获取需要结果

.getForObject
直接返回body结果
这里写图片描述

3.发送post请求

也是通过getForEntity、getForObject调用
restTemplate.postForEntity(“http://localhost:8888/rest/echo“, map, String.class);
第二个参数是body内容,如果需要以form表单格式提交,需要设置header

        HttpHeaders headers = new HttpHeaders();
        headers.setContentType(MediaType.APPLICATION_FORM_URLENCODED);

        MultiValueMap<String, String> map= new LinkedMultiValueMap<String, String>();
        map.add("body", "我是一个body");

        HttpEntity<MultiValueMap<String, String>> request = new HttpEntity<>(map, headers);

        ResponseEntity<String> responseEntity = restTemplate.postForEntity("http://localhost:8888/rest/echo", request, String.class);
        System.out.println(responseEntity.getBody());
4.restTemplate超时时间设置
    @Bean
    public RestTemplate restTemplate(RestTemplateBuilder builder) {
        return builder
                .setConnectTimeout(10000)
                .setReadTimeout(10000)
                .build();
    }
5.简单重试
        for (int i = 1; i <= count; i++) {
            try {
                System.out.println("try:"+i);
                restTemplate.postForEntity("http://localhost:8888/rest/echo", request, String.class);
                break;
            } catch (Exception e) {
                e.printStackTrace();
                try {
                    Thread.sleep(100 * i);
                } catch (InterruptedException e1) {
                    e1.printStackTrace();
                }
            }
        }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值