Class MBeanExportConfiguration
java.lang.Object
org.springframework.context.annotation.MBeanExportConfiguration
- All Implemented Interfaces:
Aware
,BeanFactoryAware
,ImportAware
,EnvironmentAware
@Configuration(proxyBeanMethods=false)
@Role(2)
public class MBeanExportConfiguration
extends Object
implements ImportAware, EnvironmentAware, BeanFactoryAware
@Configuration
class that registers a AnnotationMBeanExporter
bean.
This configuration class is automatically imported when using the
EnableMBeanExport
annotation. See its javadoc for complete usage details.
- Since:
- 3.2
- Author:
- Phillip Webb, Chris Beams
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
setBeanFactory
(BeanFactory beanFactory) Callback that supplies the owning factory to a bean instance.void
setEnvironment
(Environment environment) Set theEnvironment
that this component runs in.void
setImportMetadata
(AnnotationMetadata importMetadata) Set the annotation metadata of the importing @Configuration
class.
-
Constructor Details
-
MBeanExportConfiguration
public MBeanExportConfiguration()
-
-
Method Details
-
setImportMetadata
Description copied from interface:ImportAware
Set the annotation metadata of the importing @Configuration
class.- Specified by:
setImportMetadata
in interfaceImportAware
-
setEnvironment
Description copied from interface:EnvironmentAware
Set theEnvironment
that this component runs in.- Specified by:
setEnvironment
in interfaceEnvironmentAware
-
setBeanFactory
Description copied from interface:BeanFactoryAware
Callback that supplies the owning factory to a bean instance.Invoked after the population of normal bean properties but before an initialization callback such as
InitializingBean.afterPropertiesSet()
or a custom init-method.- Specified by:
setBeanFactory
in interfaceBeanFactoryAware
- Parameters:
beanFactory
- owning BeanFactory (nevernull
). The bean can immediately call methods on the factory.- See Also:
-
mbeanExporter
-