Spring Core
Exercise: Reminder Application
-
Clone the GitLab repository Reminder.
-
Implement a service
ReminderService that allows scheduling a reminder message to be displayed a fixed number of times with a fixed delay.
-
Implement the trigger
RepetitionTrigger that determines the next execution time based on a start time, a delay and a number of repetitions.
-
Implement a Spring Boot application that allows a user to enter a time and text and schedules a corresponding reminder.
Solution