@Scheduled(cron="* * * 24 * *")
public void cronJobSchedular() {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
		
Date now = new Date();
		
String date = sdf.format(now);
		
System.out.println("Current Date and time is: "+date+" count: "+count);
	count++;
}