You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.
기능
JwtService
,JoinSpaceTokenManager
가 상속받을 수 있는AbstractJwtService
를 만든다.JwtService
의 목적을 명확히 하기 위해JwtAuthenticationTokenService(또는 Manager)
로 명칭을 변경한다.설명
JWT는 토큰마다
등등 토큰의 발급 목적에 따라 일부 동작방식이 다르게 됩니다.
따라서 비슷한 기능은 상위 interface 또는 abstract class에 정의하고, 이를 Jwt를 활용하는 class에서 상속받게 만드는 것이 이슈의 목적입니다.
기대 효과
이후 Jwt를 이용해서 토큰을 발급할 때 불필요한 코드작성이 줄고, 유지보수성이 좋아진다.
The text was updated successfully, but these errors were encountered: