springboot RestTemplate httpclient

  1. RestTemplate是spring支持的一个请求http rest服务的模板对象,性质上有点像jdbcTemplate
  2. RestTemplate底层仍是使用的httpclient(org.apache.http.client.HttpClient)发送请求的
  3. HttpClient能够作链接池,而发送消息的工具类可使用RestTemplate,因此若是你的项目需求http链接池,RestTemplate+httpclient链接池是一种不错的方式,能够节省开发工做,也能够更优雅的使用。
相关文章
相关标签/搜索