Skip to content

Commit

Permalink
feat: Jwt-Manager 라이브러리 버전 변경 (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
seong-wooo authored Sep 10, 2023
1 parent 0cf6c96 commit eb7f197
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ repositories {
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-security:3.1.0'
implementation 'org.springframework.boot:spring-boot-starter-web:3.1.0'
implementation 'com.github.SWM-KAWAI-MANS:jwt-manager:1.3.0'
implementation 'com.github.SWM-KAWAI-MANS:jwt-manager:1.4.0'
compileOnly 'org.projectlombok:lombok:1.18.26'
annotationProcessor 'org.projectlombok:lombok:1.18.26'
testCompileOnly 'org.projectlombok:lombok:1.18.26'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ protected void doFilterInternal(
HttpServletRequest request, HttpServletResponse response, FilterChain filterChain)
throws ServletException, IOException {
final String token = request.getHeader("Authorization");
final AuthUser auth = new AuthUser(extractor.extract(token));
final AuthUser auth = new AuthUser(extractor.extractAccessToken(token));
SecurityContextHolder.getContext().setAuthentication(auth);
filterChain.doFilter(request, response);
}
Expand Down

0 comments on commit eb7f197

Please sign in to comment.