[jboss-jira] [JBoss JIRA] Created: (JBAS-5471) Deploying EJB3 service throws "java.lang.RuntimeException: No MBeanServer has been injected"

Galder Zamarreno (JIRA) jira-events at lists.jboss.org
Tue Apr 22 12:04:58 EDT 2008


Deploying EJB3 service throws "java.lang.RuntimeException: No MBeanServer has been injected"
--------------------------------------------------------------------------------------------

                 Key: JBAS-5471
                 URL: http://jira.jboss.com/jira/browse/JBAS-5471
             Project: JBoss Application Server
          Issue Type: Bug
      Security Level: Public (Everyone can see)
          Components: EJB3
    Affects Versions: JBossAS-5.0.0.Beta4
            Reporter: Galder Zamarreno
         Assigned To: Galder Zamarreno
             Fix For: JBossAS-5.0.0.CR1


I'm trying to deploy an EJB3 service but I'm unable to do so as the following 
is thrown:

2008-04-22 17:21:20,640 ERROR [STDERR] (main) Caused by: java.lang.RuntimeException: No MBeanServer has been injected
2008-04-22 17:21:20,641 ERROR [STDERR] (main) 	at org.jboss.ejb3.deployers.JBossASKernel.installMBean(JBossASKernel.java:135)
2008-04-22 17:21:20,641 ERROR [STDERR] (main) 	at org.jboss.ejb3.service.ServiceContainer.registerManagementInterface(ServiceContainer.java:587)

Please find attached:
- source code for EJB3 service
- deployment archive
- server.log with TRACE on org.jboss.ejb3

I suspect Ejb3JBoss5Deployment should be injecting mbeanServer in the kernelAbstraction but it doesn't:

   public Ejb3JBoss5Deployment(DeploymentUnit ejb3Unit, Kernel kernel, MBeanServer mbeanServer, org.jboss.deployers.structure.spi.DeploymentUnit jbossUnit, DeploymentScope deploymentScope, JBossMetaData metaData, PersistenceUnitsMetaData persistenceUnitsMetaData)
   {
      super(ejb3Unit, deploymentScope, metaData, persistenceUnitsMetaData);
      this.jbossUnit = jbossUnit;
      kernelAbstraction = new JBossASKernel(kernel);

      // todo maybe mbeanServer should be injected?
      this.mbeanServer = mbeanServer;
   }

I'll have a go at passing the mbeanServer to the kernelAbstraction and see if that fixes it.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the jboss-jira mailing list