We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm sure this is a more complex task than it sounds, but the basic idea mightbe something like:
(application.yml):
quartz; triggers: - name: 'cronTrigger1' type: cron cronExpression: '0 0 2 * * ?' - name: 'cronTrigger2' type: cron cronExpression: '0 0 12 * * 1' - name: 'simpleTrigger1' type: simple startDelay:10000, repeatInterval: 30000, repeatCount: 10
Then perhaps the Job would look like:
class MyJob { static triggers = { configured name: 'cronTrigger1' } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm sure this is a more complex task than it sounds, but the basic idea mightbe something like:
(application.yml):
Then perhaps the Job would look like:
The text was updated successfully, but these errors were encountered: