Open
Conversation
d496766 to
493ce3e
Compare
493ce3e to
f88bc8a
Compare
90b549a to
08b3a95
Compare
The GreetingController is extended, so it now allows a POST which schedules a job to run at a set frequency. The job just logs the Greeting to the console Quartz is a framework which allows Jobs to be scheduled to run asynchronously, at a fixed frequency or point in time. This is useful if you want to allow the API user to schedule a task to be performed at a set point in the future The job schedule is persisted in an h2 database, so they will live beyond the lifespan of an application run. I.e. the application can be restarted, and the running jobs will restart. The database schema is created using Flyway Jira: n/a
08b3a95 to
3b8c716
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The GreetingController is extended, so it now allows a POST which schedules a job to
run at a set frequency. The job just logs the Greeting to the console
Quartz is a framework which allows Jobs to be scheduled to run asynchronously, at a fixed
frequency or point in time. This is useful if youo want to allow the API user to
schedule a task to be performed at a set point in the future
The job schedule is persisted in a postgres database, so they will live beyond the lifespan
of an application run. I.e. the application can be restarted, and the running jobs will
restart.
Jira: n/a