restTemplate接口调用不要太简单

RestTemplate是Spring提供的一个用于访问Web服务的模板类,它对HTTPClient进行了封装,简化了GET和POST操作。在配置中,可以通过添加依赖并创建@Bean来实现自动化配置。在实际使用中,可以使用@Autowired注入RestTemplate,然后调用其getForObject和postForObject方法进行HTTP请求,获取响应数据。
摘要由CSDN通过智能技术生成

restTempalte是对httpclient进行了进一步的封装使得使用起来更加的简单易用甚至

1.准备阶段

1.1 加入依赖

 <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>fastjson</artifactId>
            <version>1.2.47</version>
        </dependency>

        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpclient</artifactId>
            <version>4.5.14</version>
        </dependency>

1.2 可以在启动类下面加上restTemplate 使得启动是将其放入bean工厂中(也可以在使用时候每次去new对象)

   @Bean
    public RestTemplate restTemplate(){
        return new RestTemplate();
    }

2 get和post的使用

 @Autowired
    RestTemplate restTemplate;
    @GetMapping("/c")
    public String testRestT(){
        return restTemplate.getForObject("http://localhost:8080/b/test",String.class);
    }
@PostMapping("/d")
    public String testPost(com.jiang.pojo.TestA testA){

        //1.请求的路径。 2,请求的参数map格式,或者是对象。 3,返回的类型

      return   restTemplate.postForObject("http://43.155.113.91:9901/keywordSearchjw/getcontent",testA, String.class);

    }

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值