Spring Application Services

Exercise: Reminder Application




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

  4. Template
    Solution