|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.springframework.jmx.export.naming.KeyNamingStrategy
public class KeyNamingStrategy
ObjectNamingStrategy implementation that builds
ObjectName instances from the key used in the
"beans" map passed to MBeanExporter.
Can also check object name mappings, given as Properties
or as mappingLocations of properties files. The key used
to look up is the key used in MBeanExporter's "beans" map.
If no mapping is found for a given key, the key itself is used to
build an ObjectName.
setMappings(java.util.Properties),
setMappingLocation(org.springframework.core.io.Resource),
setMappingLocations(org.springframework.core.io.Resource[]),
MBeanExporter.setBeans(java.util.Map) | Field Summary | |
|---|---|
protected Log |
logger
Log instance for this class. |
private Resource[] |
mappingLocations
Stores the Resources containing properties that should be loaded
into the final merged set of Properties used for ObjectName
resolution. |
private java.util.Properties |
mappings
Stores the mappings of bean key to ObjectName. |
private java.util.Properties |
mergedMappings
Stores the result of merging the mappings Properties
with the the properties stored in the resources defined by mappingLocations. |
| Constructor Summary | |
|---|---|
KeyNamingStrategy()
|
|
| Method Summary | |
|---|---|
void |
afterPropertiesSet()
Merges the Properties configured in the mappings and
mappingLocations into the final Properties instance
used for ObjectName resolution. |
javax.management.ObjectName |
getObjectName(java.lang.Object managedBean,
java.lang.String beanKey)
Attempts to retrieve the ObjectName via the given key, trying to
find a mapped value in the mappings first. |
void |
setMappingLocation(Resource location)
Set a location of a properties file to be loaded, containing object name mappings. |
void |
setMappingLocations(Resource[] mappingLocations)
Set location of properties files to be loaded, containing object name mappings. |
void |
setMappings(java.util.Properties mappings)
Set local properties, containing object name mappings, e.g. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected final Log logger
Log instance for this class.
private java.util.Properties mappings
ObjectName.
private Resource[] mappingLocations
Resources containing properties that should be loaded
into the final merged set of Properties used for ObjectName
resolution.
private java.util.Properties mergedMappings
mappings Properties
with the the properties stored in the resources defined by mappingLocations.
| Constructor Detail |
|---|
public KeyNamingStrategy()
| Method Detail |
|---|
public void setMappings(java.util.Properties mappings)
public void setMappingLocation(Resource location)
public void setMappingLocations(Resource[] mappingLocations)
public void afterPropertiesSet()
throws java.io.IOException
Properties configured in the mappings and
mappingLocations into the final Properties instance
used for ObjectName resolution.
afterPropertiesSet in interface InitializingBeanjava.io.IOException
public javax.management.ObjectName getObjectName(java.lang.Object managedBean,
java.lang.String beanKey)
throws javax.management.MalformedObjectNameException
ObjectName via the given key, trying to
find a mapped value in the mappings first.
getObjectName in interface ObjectNamingStrategymanagedBean - the bean that will be exposed under the
returned ObjectNamebeanKey - the key associated with this bean in the beans map
passed to the MBeanExporter
ObjectName instance
javax.management.MalformedObjectNameException - if the resulting ObjectName is invalid
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||