Skip to content

Commit

Permalink
Merge pull request #230 from OutDecision/issue/216
Browse files Browse the repository at this point in the history
[BUGFIX]: 동시접속 에러
  • Loading branch information
baeksom authored May 27, 2024
2 parents 37f0937 + 7a17713 commit e9b49c6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {

// JWT 인증 필터를 UsernamePasswordAuthenticationFilter 앞에 추가한다.
return http
.addFilterBefore(jwtAuthFilter, UsernamePasswordAuthenticationFilter.class)
.addFilterBefore(jwtExceptionFilter, JwtAuthFilter.class)
.addFilterBefore(jwtExceptionFilter, UsernamePasswordAuthenticationFilter.class)
.addFilterBefore(jwtAuthFilter, JwtExceptionFilter.class)
.build();
}
}

0 comments on commit e9b49c6

Please sign in to comment.