I use the following annotation to call a stateless session bean once a 5 minutes:
@Schedule(second = "0", minute = "0/5", hour = "*")
I works as expected, except it stops itself after a few days. I guess there may be a default lifetime and I do not know how to override it.
Please help me to configure the scheduler to run indefinitely.