Call function periodically in Java

cron, jakarta-ee, java

Solution

To call something periodically, see TimerTask

Problem

we need run one function periodically in Java web application . How to call function of some class periodically ? Is there any way that call function when some event occured like high load in server and so on . what is crontab ? Is that work periodically ?

Original source