package kr.re.etri.autoflow; import lombok.extern.slf4j.Slf4j; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.context.annotation.Bean; import org.springframework.data.jpa.repository.config.EnableJpaAuditing; import org.springframework.web.client.RestTemplate; @SpringBootApplication @EnableJpaAuditing @Slf4j public class AutoFlowApplication { public static void main(String[] args) { SpringApplication.run(AutoFlowApplication.class, args); } @Bean public RestTemplate restTemplate() { return new RestTemplate(); } }