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
Post a Comment