package com.izouma.nineth.web; import lombok.AllArgsConstructor; import org.springframework.context.annotation.Configuration; import org.springframework.scheduling.annotation.EnableScheduling; import org.springframework.scheduling.annotation.Scheduled; @Configuration @EnableScheduling @AllArgsConstructor public class UserHoldCountScheduleTask { private UserHoldCountController userHoldCountController; @Scheduled(cron = "0 0 22 ? * SUN") private void configureTasks() { userHoldCountController.refresh(); } }