I have following spring job to run every day two times please check my following cron express is that correct to trigger every day two times.
@Scheduled(cron = "0 0 24/12 * ? *")
public void demoService()
{
}
I tried the above expression, but this didn't work. What's wrong here?