본문 바로가기

Back-end

@RequestParam("yyyy-MM") 월 입력 -> YearMonth 처리

@RequestParam(value = "searchYearMonth", required = false) YearMonth searchYearMonth
YearMonth searchYearMonth

 

월 입력 받고 월 시작일, 종료일 구하기

 

LocalDate searchStartDate = searchYearMonth.atDay(1);
LocalDate searchEndDate = searchYearMonth.atEndOfMonth();

 

 

참고: https://jojoldu.tistory.com/527