RestTemplate需要哪些pom
使用RestTemplate需要添加以下依赖到pom文件中:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
这些依赖将会提供Spring Boot的Web支持以及测试支持。
原文地址: https://www.cveoy.top/t/topic/izQC 著作权归作者所有。请勿转载和采集!