is there any events like @PostConstruct and ... when a stateless ejb is assigned to the pool?

I want to reset som local variables when it happens.

RGDS

link|improve this question

52% accept rate
which pool? Thread pool or Bean Pool? When the server receives a request it assings a thread from the thread pool and a bean from the bean pool to serve the request. The bean has been in the pool all the time, so it is never assigned to the pool. Do you mean when a bean becomes available again? – edalorzo Apr 17 '11 at 13:53
Bean pool i mean – Navid Apr 18 '11 at 10:58
feedback

1 Answer

No, there is no such mechanism (at least, nothing spec-mandated, and I'm not aware of any vendor extensions). If you give more details on what you're trying to do, someone might be able to give alternative advice.

link|improve this answer
I want to store some states with local variables inside the stateless bean and I want to reset them when the bean use for new client request – Navid Apr 18 '11 at 10:57
Then use method local variables, not an instance variables. – bkail Apr 18 '11 at 15:30
feedback

Your Answer

 
or
required, but never shown

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