Spring Core

Exercise: Reminder Application

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

  5. Solution