Skip to content

Commit

Permalink
refactor: access token 유효시간 증가
Browse files Browse the repository at this point in the history
  • Loading branch information
2Jin1031 committed Jan 12, 2025
1 parent 064f126 commit cd3f941
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ protected void successfulAuthentication(HttpServletRequest request, HttpServletR

String role = auth.getAuthority();

String token = jwtUtil.createJwt(loginId, role, 60 * 60 * 10L);
String token = jwtUtil.createJwt(loginId, role, 1800 * 100 * 10L);

response.addHeader("Authorization", "Bearer " + token);
}
Expand Down

0 comments on commit cd3f941

Please sign in to comment.