From b79c79cb268e7043b875402e9891652ccf5cabb4 Mon Sep 17 00:00:00 2001 From: roy-zz <74298434+roy-zz@users.noreply.github.com> Date: Wed, 20 Apr 2022 17:00:58 +0900 Subject: [PATCH] =?UTF-8?q?Gateway=20=EA=B5=AC=EC=84=B1=20=EB=AC=B8?= =?UTF-8?q?=EC=84=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 링크 경로 추가 --- document/gateway/spring_gateway_practice.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/document/gateway/spring_gateway_practice.md b/document/gateway/spring_gateway_practice.md index 4cd8436..0ff1c21 100644 --- a/document/gateway/spring_gateway_practice.md +++ b/document/gateway/spring_gateway_practice.md @@ -1,4 +1,4 @@ -이번 장에서는 [API Gateway - 이론]()에 이어 직접 Spring Gateway 서버를 구축해본다. +이번 장에서는 [API Gateway Pattern- 이론](https://imprint.tistory.com/214) 에 이어 직접 Spring Gateway 서버를 구축해본다. 모든 소스 코드는 [깃허브 (링크)](https://github.com/roy-zz/spring-cloud) 에 올려두었다. --- @@ -6,7 +6,7 @@ ### 프로젝트 구성 Spring Gateway 서버를 구축하기 위해서는 Discovery 서버가 실행되어 있어야한다. -만약 실행되지 않은 상태라면 필자가 [이전에 작성한 글 (링크)]() 를 참고하도록 한다. +만약 실행되지 않은 상태라면 필자가 [이전에 작성한 글 (링크)](https://imprint.tistory.com/213) 를 참고하도록 한다. ---