Making JMX instrumentation manager configurable using some bus properties -------------------------------------------------------------------------
Key: CXF-3992 URL: https://issues.apache.org/jira/browse/CXF-3992 Project: CXF Issue Type: Improvement Components: Management Affects Versions: 2.5.1 Reporter: Aki Yoshida Assignee: Aki Yoshida Fix For: 2.5.2 In some cases, for example, on an OSGi container having the JMX mbean server service running, with CXF 2.5.0 and up, there is no need in explicitly configuring the instrumentation manager bean. In other cases, the instrumentation manager bean may need to be explicitly configured. Previously, this meant that an instance of the InstrumentationManagerImpl bean must be configured. And in this case, there was some issue in the consistent association between the bus and its configured instrumentation manager instance, as initially another instrumentation manager instance is initially assigned to the bus. In order to solve this problem and at the same time to simplify the configuration, this patch introduces a mechanism to directly configure the instrumentation bean using some specific bus properties. Here is a sample: {code} <cxf:bus bus="mybus"> <cxf:properties> <entry key="bus.jmx.enabled" value="true"/> <entry key="bus.jmx.threaded" value="false"/> <entry key="bus.jmx.daemon" value="false"/> <entry key="bus.jmx.JMXServiceURL" value="service:jmx:rmi:///jndi/rmi://localhost:9914/jmxrmi" /> </cxf:properties> </cxf:bus> {code} Property bus.jmx._prop_ corresponds to property _prop_ of the InstrumentationManager bean. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira