RestTemplate远程调用

简单演示下RestTemplate的基本使用。

RestTemplate是spring提供的一个远程调用工具,常常搭配Eureka使用,不过今天只单独演示RestTemplate。

更多用法请参照官方文档:RestTemplate (Spring Framework 5.3.22 API),不过用的更多的(在下觉得)一般是

getForObject()

演示分为客户端和服务端两部分,这里主要演示消费端,因为RestTemplate一系列操作都在消费端完成。

1.在controller同级包下建了一个配置包,用于配置RestTemplate,配置文件名ApplicationContextConfig.config

内容如下:

@Configuration   //声明这是个配置文件,使其能够被扫描到
public class ApplicationContextConfig {

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

}
2.controller内容如下:

@RestController
public class OrderController {

    //这里是我们要调用的服务地址
    //这里是我们要调用的服务地址
    //这里是我们要调用的服务地址
    public static final String PAYMENT_URL = "http://localhost:8001";
 

    @Resource
    private RestTemplate restTemplate;//注入RestTemplate

    @GetMapping("/consumer/student/save")
    public CommonResult<Student> create(Student student) {
        return restTemplate.postForObject(PAYMENT_URL + "/student/save", student, CommonResult.class);
    }

    @GetMapping(value = "/consumer/student/get/{id}")
    public CommonResult<Student> get(@PathVariable("id") int id){
        //此处拼接完整请求路径并开始调用另一服务即可
        return restTemplate.getForObject(PAYMENT_URL + "/student/get/"+id, CommonResult.class);
    }
}

或者使用下面一种方式更简单一些,直接在controller中直接new一个RestTemplate对象:


@RestController
public class OrderController {
    public static final String PAYMENT_URL = "http://localhost:8001";//单机版
    //public static final String PAYMENT_URL = "http://CLOUD-PAYMENT-SERVICE";

    RestTemplate restTemplate=new RestTemplate();

    @GetMapping("/consumer/student/save")
    public CommonResult<Student> create(Student student) {
        return restTemplate.postForObject(PAYMENT_URL + "/student/save", student, CommonResult.class);
    }

    @GetMapping(value = "/consumer/student/get/{id}")
    public CommonResult<Student> get(@PathVariable("id") int id) {
        int a = 0;
        return restTemplate.getForObject(PAYMENT_URL + "/student/get/" + id, CommonResult.class);
    }
}

上述请求路径拼接完成后一定要正确,我的服务端路径是这样的:

    @RequestMapping(value = "/student/get/{id}")
    public CommonResult<Student> selectById(@PathVariable int id) {
        return new CommonResult(200, "查询成功,serverPort:"+serverPort, studentService.selectById(id));
    }

时间问题,内容较为粗糙,还望各位同行指出不足之处。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
你好!关于使用RestTemplate进行远程调用,我可以给你一些帮助。RestTemplateSpring框架提供的一个用于发送HTTP请求的客户端工具。你可以使用它来调用其他系统的RESTful API。 首先,你需要在你的项目中导入RestTemplate的依赖。如果你使用的是Maven,可以在pom.xml文件中添加以下依赖: ```xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> ``` 接下来,你可以在你的代码中使用RestTemplate来发送HTTP请求。下面是一个简单的示例: ```java import org.springframework.http.HttpMethod; import org.springframework.http.ResponseEntity; import org.springframework.web.client.RestTemplate; public class RemoteServiceClient { public static void main(String[] args) { RestTemplate restTemplate = new RestTemplate(); String url = "http://example.com/api/endpoint"; ResponseEntity<String> response = restTemplate.exchange(url, HttpMethod.GET, null, String.class); String responseBody = response.getBody(); System.out.println(responseBody); } } ``` 在上面的示例中,我们创建了一个RestTemplate实例,并使用exchange()方法发送了一个GET请求。你可以根据需要选择合适的HTTP方法(如GET、POST、PUT等)和请求体内容。 当然,在实际应用中,你可能还需要处理错误、设置请求头、传递URL参数等。RestTemplate提供了一些其他的方法和功能来满足这些需求。如果你需要更多细节或更复杂的使用场景,可以查阅Spring官方文档或其他相关资源。 希望这些信息对你有所帮助!如果你有任何其他问题,请随时提问。

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值