1. dependency 추가 org.springframework.cloud spring-cloud-starter-gateway 2-1. application.yml 파일에 route 정보 설정 server: port: 8000 spring: application: name: apigateway-service cloud: gateway: routes: - id: {route의 고유 식별자}// first-service uri: {해당 route의 주소} // http://localhost:8081/ (이동될 주소) predicates:// 해당 라우터의 조건 (사용자가 입력한 주소) (/first-service/**로 들어오는 요청은 모두 first-service route로 보낸다. - Path=/fi..