pringCloud学习(二)之restTemplate服务之间的调用

RestTemplate是Spring提供的一个组件,用于简化对REST服务的访问。它在应用程序中无需额外依赖,只需在启动类配置Bean即可使用。在Controller层,可以通过@Autowired注解注入RestTemplate,使用getForObject、getForEntity和postForEntity等方法进行HTTP操作,如查询、查找和保存数据。
摘要由CSDN通过智能技术生成
  1. 定义

RestTemplate 是Spring框架提供的基于REST的服务组件,底层对HTTP请求及响应进行了封装,提供了许多访问RETS服务的方法,可简化代码开发

  1. 无需额外引入依赖,在启动类添加Bean

@SpringBootApplication
public class RestTemplateApplication {
    public static void main(String[] args) {
        SpringApplication.run(RestTemplateApplication.class);
    }
    @Bean
    public RestTemplate restTemplate(){
        return new RestTemplate();
    }
}
  1. 在controller层注入使用

@RestController
@RequestMapping("rest")
public class RestTempleController {
    @Autowired
    private RestTemplate restTemplate;

    @GetMapping("/findAll")
    public List<Student> findAll(){
        //return restTemplate.getForEntity("http://localhost:8010/student/findAll", List.class).getBody();
        return restTemplate.getForObject("http://localhost:8010/student/findAll", List.class);
    }
    @GetMapping("/findById/{id}")
    public Student findById(@PathVariable("id") Long id){
        //return restTemplate.getForEntity("http://localhost:8010/student/findById/{id}", Student.class,id).getBody();
        return restTemplate.getForObject("http://localhost:8010/student/findById/{id}",Student.class,id);
    }
    @PostMapping("/save")
    public void save(@RequestBody Student student){
        restTemplate.postForEntity("http://localhost:8010/student/save",student,null).getBody();
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值