In EJB3 Timer Service, I can create the timer with the timerService.createTimer(...)
function, but the question is where I can use it?
As I know, I can't do it in Session Bean's lifecycle function, like @PostConstruct
function.
I also read it can't be called in Stateful session bean? Is there anything else I should pay attention about createing timer?