Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
The annotation looks correct (note, second="0" is the default and does not need to be specified), and there should not be a maximum lifetime. Which application server are you using? Are there any errors in the logs to suggest it might have failed? Is it possible that the application calls Timer.cancel on the automatically created timer? – bkail Apr 29 '11 at 22:37
I use Glassfish v3, and I could not find errors in the logs. – DUKE Apr 30 '11 at 2:26

1 Answer

to know if there is expiration date for your object you can use getTimers() to return an object of that timer then use this method getTimeRemaining() to know if there is expiration date for it.

anyway, you can use this annotation @Timeout to do something in case of timeout happens :

@Timeout
public void timeout(Timer timer) {
    System.out.println("do something ... ");
}

you can print the date here to know when the timeout happens..

another thing you are using "Automatic Timers" and it's configured at ejb-jar.xml so try to take a look at ejb-jar.xml to see if there is expiration date there ..

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.