19 lines
435 B
Java
19 lines
435 B
Java
package com.guo.config;
|
|
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.web.client.RestTemplate;
|
|
|
|
/**
|
|
* @author gxb
|
|
* @description 配置RESTful客户端发送HTTP请求
|
|
* @date 2024-04-15 17:20
|
|
*/
|
|
@Configuration
|
|
public class RestClientConfig {
|
|
@Bean
|
|
public RestTemplate restTemplate(){
|
|
return new RestTemplate();
|
|
}
|
|
}
|