Re: 'JMX for EJBs' implementation
Posted By:
Lasse_Koskela
Posted On:
Monday, December 23, 2002 12:30 AM
In principle you can register an EJB implementation class instance to the MBeanServer as well as any other object by doing the following:
- Have your EJB implementation class implement the MBean interface of choice
- Have your ejbCreate() method register the EJB implementation to the MBeanServer
- Have your ejbRemove() method unregister the EJB implementation to the MBeanServer