반응형
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()
반응형
'skill > Java.Kotlin' 카테고리의 다른 글
JPA PK 자동 증가일 경우, 등록 방법 (0) | 2021.05.12 |
---|---|
[kotlin] JPA PK 2개 이상 일 때, 설정 및 조회 (0) | 2021.05.12 |
[Kotlin] LocalDateTime 날짜 형식 변경 (DateTimeFormatter) (0) | 2021.05.12 |
Spring Boot JPA Paging 처리 _ Kotlin (0) | 2021.05.12 |
java.util.regex.PatternSyntaxException: Dangling meta character '*' near index 0 (0) | 2020.09.11 |