개발/기능 개발2023. 2. 26. 22:38[Spring] Microservice 관리를 위한 Eureka Server 와 Spring Cloud Gateway
Eureka Server란?마이크로 서비스가 다른 마이크로 서비스를 호출하려면 대상의 IP와 Port를 알아야한다.그렇기 때문에 각 마이크로 서비스의 IP, Port 정보를 저장하고 검색해주는 Discovery Service가 필요하다.각각의 마이크로서비스의 정보를 가지고 있는 곳이 Eureka Server이고, Server에 등록된 마이크로 서비스가 Eureka Client이다. Eureka Server 설정의존성 추가implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-server' @EnableEurekaServer를 이용해서 EurekaServer로 등록@SpringBootApplication@EnableEure..