[JAVA] Play framework scheduled jobs and crontab

In the play framework, there is a Job class that can execute a certain process periodically, and the interval is written in the parentheses of @On () as follows.


import play.jobs.Job;
import play.jobs.On;

@On("*/2****")
public class xxxxx extends Job<Void>

You can use the crontab notation to set the time interval, and the following sites are very easy to understand.

https://crontab.guru/#/15_*_

crontab Koand I knew it for the first time, but it's really convenient

Recommended Posts

Play framework scheduled jobs and crontab
Authentication function with Play Framework [Registration and authentication]
Play Framework study
Play Framework studying test
play framework personal notes
Play Framework Study Memo Database ①
First Play Framework personal notes
Introduced Dozer to Play Framework
Validation function in Play Framework