All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.jmx.support.WebSphereMBeanServerFactoryBean Maven / Gradle / Ivy

There is a newer version: 6.1.6
Show newest version
/*
 * Copyright 2002-2017 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;
import org.springframework.lang.Nullable;

/**
 * {@link FactoryBean} that obtains a WebSphere {@link javax.management.MBeanServer}
 * reference through WebSphere's proprietary {@code AdminServiceFactory} API,
 * available on WebSphere 5.1 and higher.
 *
 * 

Exposes the {@code MBeanServer} 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. * *

See the javadocs for WebSphere's * {@code AdminServiceFactory} * and {@code MBeanFactory}. * * @author Juergen Hoeller * @author Rob Harrop * @since 2.0.3 * @see javax.management.MBeanServer * @see MBeanServerFactoryBean */ public class WebSphereMBeanServerFactoryBean implements FactoryBean, 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"; @Nullable private MBeanServer mbeanServer; @Override 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 = (MBeanServer) getMBeanServerMethod.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); } } @Override @Nullable public MBeanServer getObject() { return this.mbeanServer; } @Override public Class getObjectType() { return (this.mbeanServer != null ? this.mbeanServer.getClass() : MBeanServer.class); } @Override public boolean isSingleton() { return true; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy