From 413fa577c6eaedd87e7ce8f2e3937b246058cd64 Mon Sep 17 00:00:00 2001 From: hanueleee Date: Tue, 15 Aug 2023 20:40:26 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20RecipeHandlerInterceptor=EC=97=90=20?= =?UTF-8?q?=EB=8C=80=ED=95=9C=20pathpattern=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/src/main/java/com/funeat/common/WebConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/main/java/com/funeat/common/WebConfig.java b/backend/src/main/java/com/funeat/common/WebConfig.java index 4691efbe4..f60517791 100644 --- a/backend/src/main/java/com/funeat/common/WebConfig.java +++ b/backend/src/main/java/com/funeat/common/WebConfig.java @@ -34,7 +34,7 @@ public void addInterceptors(final InterceptorRegistry registry) { .addPathPatterns("/api/products/**/reviews/**") .addPathPatterns("/api/members/**"); registry.addInterceptor(recipeHandlerInterceptor) - .addPathPatterns("/api/recipes"); + .addPathPatterns("/api/recipes/**"); } @Override