1. 애플리케이션 클래스에 RestTemplate을 Bean으로 등록 @SpringBootApplication @EnableDiscoveryClient public class UserServiceApplication { public static void main(String[] args) { SpringApplication.run(UserServiceApplication.class, args); } ... @Bean @LoadBalanced public RestTemplate getRestTemplate() { return new RestTemplate(); } } 2. exchange() 메서드로 요청하기 public UserDto getUserByUserId(String userId) { ... /*..