From 5e44d82619b01e9ca008bbe51bab8d42413b4041 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B3=A0=EA=B2=BD=EC=88=98?= Date: Wed, 11 Feb 2026 11:26:17 +0900 Subject: [PATCH 1/3] =?UTF-8?q?fix(#369):=20refresh=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../RealMatch/global/config/jwt/JwtAuthenticationFilter.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/example/RealMatch/global/config/jwt/JwtAuthenticationFilter.java b/src/main/java/com/example/RealMatch/global/config/jwt/JwtAuthenticationFilter.java index ccfe37a0..5ac99b90 100644 --- a/src/main/java/com/example/RealMatch/global/config/jwt/JwtAuthenticationFilter.java +++ b/src/main/java/com/example/RealMatch/global/config/jwt/JwtAuthenticationFilter.java @@ -33,7 +33,8 @@ public class JwtAuthenticationFilter extends OncePerRequestFilter { "/swagger-ui", "/swagger-ui.html", "/swagger-resources", - "/actuator" + "/actuator", + "/api/v1/auth/refresh" ); @Override From 972bd063b1779cc8ffa53d859b15d66b50620588 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B3=A0=EA=B2=BD=EC=88=98?= Date: Wed, 11 Feb 2026 11:48:03 +0900 Subject: [PATCH 2/3] =?UTF-8?q?fix(#369):=20refresh=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-test..yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/application-test..yml b/src/main/resources/application-test..yml index 6f69ff61..3f189ec7 100644 --- a/src/main/resources/application-test..yml +++ b/src/main/resources/application-test..yml @@ -25,7 +25,7 @@ spring: jpa: hibernate: - ddl-auto: create-drop + ddl-auto: none properties: hibernate: dialect: ${JPA_HIBERNATE_DIALECT} From 6c1c92901727b2dca2e12e099ef9e9fbf1b849a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B3=A0=EA=B2=BD=EC=88=98?= Date: Wed, 11 Feb 2026 11:51:22 +0900 Subject: [PATCH 3/3] =?UTF-8?q?fix(#369):=20refresh=20=EC=88=98=EC=A0=95?= =?UTF-8?q?=202?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/example/RealMatch/global/config/SecurityConfig.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/example/RealMatch/global/config/SecurityConfig.java b/src/main/java/com/example/RealMatch/global/config/SecurityConfig.java index 4cd5f8d1..bf282f16 100644 --- a/src/main/java/com/example/RealMatch/global/config/SecurityConfig.java +++ b/src/main/java/com/example/RealMatch/global/config/SecurityConfig.java @@ -44,7 +44,8 @@ public class SecurityConfig { "/v3/api-docs/**", "/swagger-ui/**", "/swagger-resources/**", "/api/v1/tags/**", "/actuator/health", - "/api/v1/auth/signup" + "/api/v1/auth/signup", + "/api/v1/auth/refresh" }; private static final String[] REQUEST_AUTHENTICATED_ARRAY = {