datesUntil

    [TIL - 20231222] searchWeeklyIntakeCalories 로직 개선

    💻문제점1 NutrientsQueryService.java public List searchWeeklyIntakeCalories( Long memberId, LocalDate startDate, LocalDate endDate) { memberQueryService.search(memberId); List caloriesOfMealTypes = new ArrayList(); LocalDate currentDate = startDate; while (!currentDate.isAfter(endDate)) { LocalDateTime startDateTime = currentDate.atStartOfDay(); LocalDateTime endDateTime = currentDate.atTime(LocalTi..