Package org.springframework.boot.actuate.endpoint.jmx

Examples of org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter


  @Autowired
  EndpointMBeanExportProperties properties = new EndpointMBeanExportProperties();

  @Bean
  public EndpointMBeanExporter endpointMBeanExporter(MBeanServer server) {
    EndpointMBeanExporter mbeanExporter = new EndpointMBeanExporter();

    String domain = this.properties.getDomain();
    if (StringUtils.hasText(domain)) {
      mbeanExporter.setDomain(domain);
    }
    mbeanExporter.setServer(server);

    mbeanExporter.setEnsureUniqueRuntimeObjectNames(this.properties.isUniqueNames());
    mbeanExporter.setObjectNameStaticProperties(this.properties.getStaticNames());

    return mbeanExporter;
  }
View Full Code Here

TOP

Related Classes of org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.