大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
RestTemplate是Spring提供的用于访问Rest服务的客户端,RestTemplate提供了多种便捷访问远程Http服务的方法,能够大大提高客户端的编写效率。前面的博客中https://www.jb51.net/article/132885.htm,已经使用Jersey客户端来实现了消费spring boot的Restful服务,接下来,我们使用RestTemplate来消费前面示例中的Restful服务,前面的示例:
springboot整合H2内存数据库,实现单元测试与数据库无关性
该示例提供的Restful服务如下:http://localhost:7900/user/1
{"id":1,"username":"user1","name":"张三","age":20,"balance":100.00}
pom文件依赖如下:
<?xml version="1.0" encoding="UTF-8"?>4.0.0 com.chhliu.springboot.restful springboot-rest-template 0.0.1-SNAPSHOT jar springboot-rest-template Demo project for Spring Boot RestTemplate org.springframework.boot spring-boot-starter-parent 1.4.3.RELEASE UTF-8 UTF-8 1.7 org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-test test org.springframework.boot spring-boot-devtools true org.springframework.boot spring-boot-maven-plugin