In my Stateless bean, I have the following lines:
@Schedule(minute="*/2", hour="*")
public void doSomething() {}
I expect that this method would be called every 2 minutes but when I deploy it, nothing happens. Besides, if I put @Schedule in a bean and no client invokes any methods of this bean (the bean instance has not been created yet), will the container or anything call this method every 2 minutes?
This is the first time I have used @Schedule annotation, I'd be very grateful if someone could give me some advice on these matters.
Best regards,
James Tran