LocalDateTime 일 수 계산 import java.time.Duration import java.time.LocalDateTime Duration.between(regDate, LocalDateTime.now()).toDays() - LocalDateTime.now() : 현재 날짜 및 시간 - regDate가 오늘 날짜 인경우 결과는 '0' LocalDateTime 두 날짜 차이 일별 구하기 import java.time.Duration import java.time.LocalDateTime Duration.between(startDate, endDate).toDays()