Spring Application Services
Exercise: Reminder Application
- 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 date and text and schedules a corresponding reminder
Template
Solution