이제 함수를 보면 접속 날을 구한다 LocalDate today=LocalDate.now(); 접속 날의 달의 마지막 날을 구한다 YearMonth yearMonth=YearMonth.from(today); 이름 표시 함수 showName(root, name); 월표 시 해주는 함수 getMonth(root, today); 월에 맞는 일자 표시해주는 함수 getDays(root, lastDay); 페이지 띄어주는 함수 showStage(root, "reservationPage"); showName(root, name) #name이라는 라벨에 접속자 이름을 띄어준다 getMonth(root,today); #month이라는 라벨에 접속 월을 띄어준다 getDays(Parent root,int lastDay)..