-
Date 객체 사용 시 시간 단위 지정해서 시간 수정하기개인 프로젝트/3. simple board 02 2024. 1. 6. 12:53
참고 : https://sundries-in-myidea.tistory.com/150
private Date getExpiredDate() { return Date.from(new Date(System.currentTimeMillis()) .toInstant() .plus(jwtItems.expiredTime, MINUTES.toChronoUnit())); }
Date 객체를 new 키워드를 사용하고
System.currentTimeMillis() 시스템 메서드를 인자로 넘겨주어 현재 시간을 만든 후
현재 시간을 나타내는 Date 객체를 toInstant() 메서드를 이용해서 Instant 객체로 만들면
LocalDateTime에서와 같이 시간을 plus, minus 할 수 있고 이 때 시간 단위도 지정할 수 있다.
'개인 프로젝트 > 3. simple board 02' 카테고리의 다른 글
SpEL 문법 : dto 객체 사용하기 (0) 2024.01.07 spring security @PreAuthorize 문서 링크 (0) 2024.01.07 jwt 로그아웃..? (0) 2024.01.04 security exception을 rest advice를 적용한 것 처럼 출력하기 (0) 2024.01.04 고민이 생겼다 (feat. jwt, security) (0) 2024.01.03