package com.dy.common.springUtil; 
 | 
  
 | 
import org.springframework.context.annotation.Bean; 
 | 
import org.springframework.context.annotation.Configuration; 
 | 
import org.springframework.web.client.RestTemplate; 
 | 
  
 | 
/** 
 | 
 * 提供 RestTemplate 
 | 
 */ 
 | 
@Configuration 
 | 
public class RestTemplateConfiguration { 
 | 
  
 | 
    @Bean 
 | 
    public RestTemplate restTemplate(){ 
 | 
        return new RestTemplate(); 
 | 
    } 
 | 
  
 | 
} 
 |