From 672cc9a5519ac7419e78b7e84d76225b4fe3f4cc Mon Sep 17 00:00:00 2001 From: bum12ark Date: Tue, 15 Mar 2022 19:02:05 +0900 Subject: [PATCH] =?UTF-8?q?refactor(gateway-services):=20filter=20service?= =?UTF-8?q?=20=EC=98=A4=ED=83=80=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/application.yml | 4 ++-- owner-apigateway-service/src/main/resources/application.yml | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/customer-apigateway-service/src/main/resources/application.yml b/customer-apigateway-service/src/main/resources/application.yml index 26d7045..2f7e934 100644 --- a/customer-apigateway-service/src/main/resources/application.yml +++ b/customer-apigateway-service/src/main/resources/application.yml @@ -46,7 +46,7 @@ spring: allow-credentials: true routes: - id: order-service - uri: lb://ORDER-SERVCIE + uri: lb://ORDER-SERVICE predicates: - Path=/order-service/** filters: @@ -54,7 +54,7 @@ spring: - RewritePath=/order-service/(?.*),/$\{segment} - id: store-service - uri: lb://STORE-SERVCIE + uri: lb://STORE-SERVICE predicates: - Path=/store-service/** filters: diff --git a/owner-apigateway-service/src/main/resources/application.yml b/owner-apigateway-service/src/main/resources/application.yml index 4cc49c7..c7fbc31 100644 --- a/owner-apigateway-service/src/main/resources/application.yml +++ b/owner-apigateway-service/src/main/resources/application.yml @@ -39,11 +39,12 @@ spring: - PUT - OPTIONS - DELETE + - PATCH allowedHeaders: '*' allow-credentials: true routes: - id: order-service - uri: lb://ORDER-SERVCIE + uri: lb://ORDER-SERVICE predicates: - Path=/order-service/** filters: @@ -51,7 +52,7 @@ spring: - RewritePath=/order-service/(?.*),/$\{segment} - id: store-service - uri: lb://STORE-SERVCIE + uri: lb://STORE-SERVICE predicates: - Path=/store-service/** filters: