views:

853

answers:

1

I would like to find out what the properties of the org.springframework.ManagedResource annotation do as seen in this JavaDoc. I want to understand each param so I can set it to the proper value. If anyone knows where to find more info, I would appreciate it.

http://static.springframework.org/spring/docs/2.5.x/api/org/springframework/jmx/export/annotation/ManagedResource.html

+2  A: 

Those are described in the JMX specification, at the section where the predefined attributes for MBeans, attributes, operation and descriptors are mentioned

Check section 4.5 of the document at JMX 1.4 spec

krumpi
Agreed, this is where I found the answer to the same question a few weeks ago.
Taylor Leese