类 AnnotationJmxAttributeSource
- java.lang.Object
- org.springframework.jmx.export.annotation.AnnotationJmxAttributeSource
- 所有已实现的接口:
Aware,BeanFactoryAware,JmxAttributeSource
public class AnnotationJmxAttributeSource extends Object implements JmxAttributeSource, BeanFactoryAware
Implementation of theJmxAttributeSourceinterface that reads annotations and exposes the corresponding attributes.- 从以下版本开始:
- 1.2
- 作者:
- Rob Harrop, Juergen Hoeller, Jennifer Hickey, Stephane Nicoll
- 另请参阅:
ManagedResource,ManagedAttribute,ManagedOperation
构造器概要
构造器 构造器 说明 AnnotationJmxAttributeSource()
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 ManagedAttributegetManagedAttribute(Method method)Implementations should return an instance ofManagedAttributeif the suppliedMethodhas the corresponding metadata.ManagedMetricgetManagedMetric(Method method)Implementations should return an instance ofManagedMetricif the suppliedMethodhas the corresponding metadata.ManagedNotification[]getManagedNotifications(Class<?> clazz)Implementations should return an array ofManagedNotificationsif the supplied theClasshas the corresponding metadata.ManagedOperationgetManagedOperation(Method method)Implementations should return an instance ofManagedOperationif the suppliedMethodhas the corresponding metadata.ManagedOperationParameter[]getManagedOperationParameters(Method method)Implementations should return an array ofManagedOperationParameterif the suppliedMethodhas the corresponding metadata.ManagedResourcegetManagedResource(Class<?> beanClass)Implementations should return an instance ofManagedResourceif the suppliedClasshas the appropriate metadata.voidsetBeanFactory(BeanFactory beanFactory)Callback that supplies the owning factory to a bean instance.
构造器详细资料
AnnotationJmxAttributeSource
public AnnotationJmxAttributeSource()
方法详细资料
setBeanFactory
public void setBeanFactory(BeanFactory beanFactory)
从接口复制的说明:BeanFactoryAwareCallback 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.- 指定者:
setBeanFactory在接口中BeanFactoryAware- 参数:
beanFactory- owning BeanFactory (nevernull). The bean can immediately call methods on the factory.- 另请参阅:
BeanInitializationException
getManagedResource
public ManagedResource getManagedResource(Class<?> beanClass) throws InvalidMetadataException
从接口复制的说明:JmxAttributeSourceImplementations should return an instance ofManagedResourceif the suppliedClasshas the appropriate metadata. Otherwise should returnnull.- 指定者:
getManagedResource在接口中JmxAttributeSource- 参数:
beanClass- the class to read the attribute data from- 返回:
- the attribute, or
nullif not found - 抛出:
InvalidMetadataException- in case of invalid attributes
getManagedAttribute
public ManagedAttribute getManagedAttribute(Method method) throws InvalidMetadataException
从接口复制的说明:JmxAttributeSourceImplementations should return an instance ofManagedAttributeif the suppliedMethodhas the corresponding metadata. Otherwise should returnnull.- 指定者:
getManagedAttribute在接口中JmxAttributeSource- 参数:
method- the method to read the attribute data from- 返回:
- the attribute, or
nullif not found - 抛出:
InvalidMetadataException- in case of invalid attributes
getManagedMetric
public ManagedMetric getManagedMetric(Method method) throws InvalidMetadataException
从接口复制的说明:JmxAttributeSourceImplementations should return an instance ofManagedMetricif the suppliedMethodhas the corresponding metadata. Otherwise should returnnull.- 指定者:
getManagedMetric在接口中JmxAttributeSource- 参数:
method- the method to read the attribute data from- 返回:
- the metric, or
nullif not found - 抛出:
InvalidMetadataException- in case of invalid attributes
getManagedOperation
public ManagedOperation getManagedOperation(Method method) throws InvalidMetadataException
从接口复制的说明:JmxAttributeSourceImplementations should return an instance ofManagedOperationif the suppliedMethodhas the corresponding metadata. Otherwise should returnnull.- 指定者:
getManagedOperation在接口中JmxAttributeSource- 参数:
method- the method to read the attribute data from- 返回:
- the attribute, or
nullif not found - 抛出:
InvalidMetadataException- in case of invalid attributes
getManagedOperationParameters
public ManagedOperationParameter[] getManagedOperationParameters(Method method) throws InvalidMetadataException
从接口复制的说明:JmxAttributeSourceImplementations should return an array ofManagedOperationParameterif the suppliedMethodhas the corresponding metadata. Otherwise should return an empty array if no metadata is found.- 指定者:
getManagedOperationParameters在接口中JmxAttributeSource- 参数:
method- theMethodto read the metadata from- 返回:
- the parameter information.
- 抛出:
InvalidMetadataException- in the case of invalid attributes.
getManagedNotifications
public ManagedNotification[] getManagedNotifications(Class<?> clazz) throws InvalidMetadataException
从接口复制的说明:JmxAttributeSourceImplementations should return an array ofManagedNotificationsif the supplied theClasshas the corresponding metadata. Otherwise should return an empty array.- 指定者:
getManagedNotifications在接口中JmxAttributeSource- 参数:
clazz- theClassto read the metadata from- 返回:
- the notification information
- 抛出:
InvalidMetadataException- in the case of invalid metadata