package com.ruoyi.jianguan.elutong.config;
|
|
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Configuration;
|
import org.springframework.web.client.RestTemplate;
|
|
@Configuration
|
public class RestConfigBean {
|
|
// @Bean
|
// public RestTemplate getRestTemplate() {
|
// return new RestTemplate(new HttpsClientRequestFactory());
|
// }
|
|
@Bean
|
public RestTemplate getRestTemplate() {
|
return new RestTemplate();
|
}
|
|
}
|