LocalDate

·TIL,일일 회고
문제 상황한달에 한번 자동으로 정산을 진행하도록 스케줄러를 통하여 구현을 하는 과정에서 지난 달의 첫날과 마지막 날을 정확하게 구해야 했습니다.LocalDateTime now = LocalDateTime.now(); LocalDateTime endDate = now.withDayOfMonth(1).minusNanos(1); LocalDateTime startDate = endDate.minusMonths(1).withDayOfMonth(1).withHour(0).withMinute(0).withSecond(0).withNano(0); Long settlementTime = endDate.getYear() * 100L + endDate.getMo..
지누박
'LocalDate' 태그의 글 목록