RestTemplate请求http接口示例

SpringMVC提供 RestTemplate请求http接口,RestTemplate的底层可以使用第三方的http客户端工具实现http 的请求,常用的http客户端工具有Apache HttpClient、OkHttpClient等。

这里以OkHttpClient为例讲解RestTemplate的用法

1.添加依赖

<dependency>
	<groupId>com.squareup.okhttp3</groupId>
	<artifactId>okhttp</artifactId>
</dependency>

2.在SpringBoot启动类中配置 RestTemplate

public class TestApplication {
	public static void main(String[] args) {
		SpringApplication.run(TestApplication.class,args);
	} 

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

3.测试RestTemplate

@Autowired
RestTemplate restTemplate;

@Test
public void testRestTemplate(){
	ResponseEntity<Map> forEntity = restTemplate.getForEntity("请求的url",Map.class);
	Map body = forEntity.getBody();
	System.out.println(body );
}
发布了243 篇原创文章 · 获赞 87 · 访问量 7万+

猜你喜欢

转载自blog.csdn.net/IT_10/article/details/103941692