I have created a scheduler using EJB 3.1 timee and schedulerd to execute at 22:30pm on week days. The annotation is given below:
@Schedule(minute="30", hour="22", dayOfWeek="5–1")
But I found that this scheduler executed immediately after starting the wildfly application server even if it is not the scheduled time.
Thanks!