How is it possible to run some EJB logic during the server start/stop ? I am using JBoss 5 and EJB 3.0. Thanks.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Server start is relatively easy: Add a servlet that is called with load-on-startup 1 so that it gets started early and can then initialize stuff on the system in it's When the app shuts down, the servlet's
|
|||
|
|
MBeans can be used as JBoss provides ServiceMBean interface & ServiceMBeanSupport abstract class to execute custom code during startup/shutdown. Override life-cycle callback methods to add custom logic. For further reference, see JBoss Service |
|||
|
|
