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

net.mossol.bot.context.RestTemplateConfiguration Maven / Gradle / Ivy

There is a newer version: 0.0.3.8
Show newest version
package net.mossol.bot.context;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.client.RestTemplate;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy