com.lorne.sds.server.DeliveryConfiguration Maven / Gradle / Ivy
package com.lorne.sds.server;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.client.RestTemplate;
@Configuration
@ComponentScan
public class DeliveryConfiguration {
@Bean
public RestTemplate restTemplate(){
return new RestTemplate();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy