Reintroduce RestTemplateConfig

This commit is contained in:
2025-07-23 00:14:56 +02:00
parent 7355b67d62
commit 432ae7e507

View File

@@ -0,0 +1,20 @@
package dev.rheinsw.common.rest;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.client.RestTemplate;
/**
* @author Thatsaphorn Atchariyaphap
* @since 23.07.25
*/
@Configuration
public class RestTemplateConfig {
@Bean
public RestTemplate plainRestTemplate() {
return new RestTemplate();
}
}