Open Source Repository

Home /spring/spring-context-3.0.5 | Repository Home



org/springframework/jmx/support/WebSphereMBeanServerFactoryBean.java
/*
 * Copyright 2002-2009 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.jmx.support;

import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;

import javax.management.MBeanServer;

import org.springframework.beans.factory.FactoryBean;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.jmx.MBeanServerNotFoundException;

/**
 {@link FactoryBean} that obtains a WebSphere {@link javax.management.MBeanServer}
 * reference through WebSphere's proprietary <code>AdminServiceFactory</code> API,
 * available on WebSphere 5.1 and higher.
 *
 <p>Exposes the <code>MBeanServer</code> for bean references.
 * This FactoryBean is a direct alternative to {@link MBeanServerFactoryBean},
 * which uses standard JMX 1.2 API to access the platform's MBeanServer.
 *
 @author Juergen Hoeller
 @author Rob Harrop
 @since 2.0.3
 @see com.ibm.websphere.management.AdminServiceFactory#getMBeanFactory()
 @see com.ibm.websphere.management.MBeanFactory#getMBeanServer()
 @see javax.management.MBeanServer
 @see MBeanServerFactoryBean
 */
public class WebSphereMBeanServerFactoryBean implements FactoryBean<MBeanServer>, InitializingBean {

  private static final String ADMIN_SERVICE_FACTORY_CLASS = "com.ibm.websphere.management.AdminServiceFactory";

  private static final String GET_MBEAN_FACTORY_METHOD = "getMBeanFactory";

  private static final String GET_MBEAN_SERVER_METHOD = "getMBeanServer";


  private MBeanServer mbeanServer;


  public void afterPropertiesSet() throws MBeanServerNotFoundException {
    try {
      /*
       * this.mbeanServer = AdminServiceFactory.getMBeanFactory().getMBeanServer();
       */
      Class adminServiceClass = getClass().getClassLoader().loadClass(ADMIN_SERVICE_FACTORY_CLASS);
      Method getMBeanFactoryMethod = adminServiceClass.getMethod(GET_MBEAN_FACTORY_METHOD);
      Object mbeanFactory = getMBeanFactoryMethod.invoke(null);
      Method getMBeanServerMethod = mbeanFactory.getClass().getMethod(GET_MBEAN_SERVER_METHOD);
      this.mbeanServer = (MBeanServergetMBeanServerMethod.invoke(mbeanFactory);
    }
    catch (ClassNotFoundException ex) {
      throw new MBeanServerNotFoundException("Could not find WebSphere's AdminServiceFactory class", ex);
    }
    catch (InvocationTargetException ex) {
      throw new MBeanServerNotFoundException(
          "WebSphere's AdminServiceFactory.getMBeanFactory/getMBeanServer method failed", ex.getTargetException());
    }
    catch (Exception ex) {
      throw new MBeanServerNotFoundException(
          "Could not access WebSphere's AdminServiceFactory.getMBeanFactory/getMBeanServer method", ex);
    }
  }


  public MBeanServer getObject() {
    return this.mbeanServer;
  }

  public Class<? extends MBeanServer> getObjectType() {
    return (this.mbeanServer != null this.mbeanServer.getClass() : MBeanServer.class);
  }

  public boolean isSingleton() {
    return true;
  }

}