Skip to content

Commit 497ea20

Browse files
authored
Merge pull request #370 from RealMatchTeam/fix/369-filter
[FIX] refresh 수정 (#369)
2 parents 00270a0 + 6c1c929 commit 497ea20

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

src/main/java/com/example/RealMatch/global/config/SecurityConfig.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ public class SecurityConfig {
4444
"/v3/api-docs/**", "/swagger-ui/**", "/swagger-resources/**",
4545
"/api/v1/tags/**",
4646
"/actuator/health",
47-
"/api/v1/auth/signup"
47+
"/api/v1/auth/signup",
48+
"/api/v1/auth/refresh"
4849
};
4950

5051
private static final String[] REQUEST_AUTHENTICATED_ARRAY = {

src/main/java/com/example/RealMatch/global/config/jwt/JwtAuthenticationFilter.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ public class JwtAuthenticationFilter extends OncePerRequestFilter {
3333
"/swagger-ui",
3434
"/swagger-ui.html",
3535
"/swagger-resources",
36-
"/actuator"
36+
"/actuator",
37+
"/api/v1/auth/refresh"
3738
);
3839

3940
@Override

src/main/resources/application-test..yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ spring:
2525

2626
jpa:
2727
hibernate:
28-
ddl-auto: create-drop
28+
ddl-auto: none
2929
properties:
3030
hibernate:
3131
dialect: ${JPA_HIBERNATE_DIALECT}

0 commit comments

Comments
 (0)