📄 log4jagent.java
字号:
/* * $Id: Log4jAgent.java 11964 2008-06-05 19:31:23Z dfeist $ * -------------------------------------------------------------------------------------- * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com * * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */package org.mule.module.management.agent;import org.mule.AbstractAgent;import org.mule.api.MuleException;import org.mule.api.lifecycle.InitialisationException;import org.mule.config.i18n.CoreMessages;import org.mule.module.management.support.AutoDiscoveryJmxSupportFactory;import org.mule.module.management.support.JmxSupport;import org.mule.module.management.support.JmxSupportFactory;import java.util.Iterator;import java.util.Set;import javax.management.InstanceNotFoundException;import javax.management.MBeanRegistrationException;import javax.management.MBeanServer;import javax.management.MBeanServerFactory;import javax.management.MalformedObjectNameException;import javax.management.ObjectInstance;import javax.management.ObjectName;import org.apache.log4j.jmx.HierarchyDynamicMBean;/** * <code>Log4jAgent</code> exposes the configuration of the Log4J instance running * in Mule for Jmx management */public class Log4jAgent extends AbstractAgent{ private MBeanServer mBeanServer; public static final String JMX_OBJECT_NAME = "log4j:type=Hierarchy"; private JmxSupportFactory jmxSupportFactory = AutoDiscoveryJmxSupportFactory.getInstance(); private JmxSupport jmxSupport = jmxSupportFactory.getJmxSupport(); public Log4jAgent() { super("jmx-log4j"); } public void initialise() throws InitialisationException { try { mBeanServer = (MBeanServer)MBeanServerFactory.findMBeanServer(null).get(0); final ObjectName objectName = jmxSupport.getObjectName(JMX_OBJECT_NAME); // unregister existing Log4j MBean first if required unregisterMBeansIfNecessary(); mBeanServer.registerMBean(new HierarchyDynamicMBean(), objectName); } catch (Exception e) { throw new InitialisationException(CoreMessages.failedToStart("JMX Agent"), e, this); } } /** * Unregister all log4j MBeans if there are any left over the old deployment */ protected void unregisterMBeansIfNecessary() throws MalformedObjectNameException, InstanceNotFoundException, MBeanRegistrationException { if (mBeanServer.isRegistered(jmxSupport.getObjectName(JMX_OBJECT_NAME))) { // unregister all log4jMBeans and loggers Set log4jMBeans = mBeanServer.queryMBeans(jmxSupport.getObjectName("log4j*:*"), null); for (Iterator it = log4jMBeans.iterator(); it.hasNext();) { ObjectInstance objectInstance = (ObjectInstance)it.next(); ObjectName theName = objectInstance.getObjectName(); mBeanServer.unregisterMBean(theName); } } } public void start() throws MuleException { // nothing to do } public void stop() throws MuleException { // nothing to do } /* * (non-Javadoc) * * @see org.mule.api.lifecycle.Disposable#dispose() */ public void dispose() { // nothing to do } /* * (non-Javadoc) * * @see org.mule.api.context.Agent#registered() */ public void registered() { // nothing to do } /* * (non-Javadoc) * * @see org.mule.api.context.Agent#unregistered() */ public void unregistered() { // nothing to do }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -