spring - Using java I need to send Notification Message, by calculating time automatically everyday at 5AM -


i need send notification messages registered customers, using mail service need send mail everyday @ 5am calculating time automatically. have mail service code completely. how execute 1 job @ specified time everyday.

you can use spring scheduler:

@scheduler(cron="0 0 5 * * *") public void emailjob() {   // code } 

also need annotation on class level: @enablescheduling


Comments

Popular posts from this blog

wireshark - USB mapping with python -

c++ - nodejs socket.io closes connection before upgrading to websocket -

Deploying Qt Application on Android is really slow? -