All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.itxiaoer.commons.lbs.HttpConfiguration Maven / Gradle / Ivy

The newest version!
package com.itxiaoer.commons.lbs;

import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.client.RestTemplate;

/**
 * @author : liuyk
 */
@Configuration
@ConditionalOnMissingBean(RestTemplate.class)
public class HttpConfiguration {

    @Bean
    public RestTemplate restTemplate() {
        return new RestTemplate();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy