Springboot+RestTemplate 简单使用
时间: 2024-01-21 13:03:33 浏览: 73
好的,下面是Springboot和RestTemplate的简单使用示例:
1. 在你的Springboot项目中添加RestTemplate依赖:
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
```
2. 在你的Java代码中使用RestTemplate发送请求:
```
// 创建一个RestTemplate对象
RestTemplate restTemplate = new RestTemplate();
// 发送GET请求
String url = "http://api.example.com/users";
String result = restTemplate.getForObject(url, String.class);
// 发送POST请求
String url = "http://api.example.com/users";
User user = new User("Tom", 18);
String result = restTemplate.postForObject(url, user, String.class);
```
其中,User是一个自定义的Java对象,用于发送POST请求时作为请求体。
注意:在发送请求前,需要先确定你要发送的请求方法(例如GET、POST、PUT等)、请求URL、请求参数(如果有)、请求头(如果有)等。具体使用方式可以参考RestTemplate的官方文档。
阅读全文