Spring Cloud로 개발하는 마이크로서비스 애플리케이션_API Gateway Service_7
·
공부/Spring
Spring Cloud로 개발하는 마이크로서비스 애플리케이션(MSA) Spring Cloud Gateway - Load Balancer Eureka 설정 dependencies 확인(gradle) - 세 개 프로젝트에 모두 적용 implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client' application.yml 설정 - 세 개 프로젝트에 모두 적용 eureka: client: register-with-eureka: true fetch-registry: true service-url: defaultZone: http://localhost:8761/eureka 아래 코드는 apigateway-service 프로..