public class JwtServiceImpl implements JwtService {
@Override
public String createJwt(int userId) {
Date now = new Date();
return Jwts.builder()
.setHeaderParam("type", "jwt")
.claim("userId", userId)
.setIssuedAt(now)
.setExpiration(new Date(System.currentTimeMillis() + 1 * (1000 * 60 * 60 * 24 * 365)))
.signWith(SignatureAlgorithm.HS256, Secret.JWT_SECRET_KEY)
.compact();
}
@Override
public String getJwt() {
HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.currentRequestAttributes()).getRequest();
return request.getHeader("X-ACCESS_TOKEN");
}
@Override
public int getUserId() throws BaseException {
String accessToken = getJwt();
if (accessToken == null || accessToken.length() == 0) {
throw new BaseException(EMPTY_JWT);
}
Jws<Claims> claims;
try {
claims = Jwts.parser()
.setSigningKey(Secret.JWT_SECRET_KEY)
.parseClaimsJws(accessToken);
} catch (ExpiredJwtException ignored) {
throw new BaseException(INVALID_JWT);
}
return claims.getBody().get("userId", Integer.class);
}
}
첫 번째로 헤더에는 타입과 암호화 형태인 'HS256'로 지정
두 번째로 내용에는 전달할 내용 포함. (ex. name, id 등)
세 번째로 서명에는 위 쪽에서 지정한 secretKey를 Base64로 암호화하여 저장
이렇게 만들어진 3부분을 .을 기준으로 한줄로 만들어서 토큰으로 사용