
kim.sesame.framework.cloud.config.InitBeanConfig Maven / Gradle / Ivy
package kim.sesame.framework.cloud.config;
import org.springframework.cloud.client.loadbalancer.LoadBalanced;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.client.RestTemplate;
@Configuration
public class InitBeanConfig {
@Bean
@LoadBalanced
public RestTemplate restTemplate() {
return new RestTemplate();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy